|
Lines 406-412
src_configure() {
Link Here
|
| 406 |
# DBA support |
406 |
# DBA support |
| 407 |
if use cdb || use berkdb || use flatfile || use gdbm || use inifile \ |
407 |
if use cdb || use berkdb || use flatfile || use gdbm || use inifile \ |
| 408 |
|| use qdbm ; then |
408 |
|| use qdbm ; then |
| 409 |
my_conf="${my_conf} --enable-dba${shared}" |
409 |
my_conf+=" --enable-dba${shared}" |
| 410 |
fi |
410 |
fi |
| 411 |
|
411 |
|
| 412 |
# DBA drivers support |
412 |
# DBA drivers support |
|
Lines 500-511
src_configure() {
Link Here
|
| 500 |
fi |
500 |
fi |
| 501 |
|
501 |
|
| 502 |
# Use pic for shared modules such as apache2's mod_php |
502 |
# Use pic for shared modules such as apache2's mod_php |
| 503 |
my_conf="${my_conf} --with-pic" |
503 |
my_conf+=" --with-pic" |
| 504 |
|
504 |
|
| 505 |
# we use the system copy of pcre |
505 |
# we use the system copy of pcre |
| 506 |
# --with-pcre-regex affects ext/pcre |
506 |
# --with-pcre-regex affects ext/pcre |
| 507 |
# --with-pcre-dir affects ext/filter and ext/zip |
507 |
# --with-pcre-dir affects ext/filter and ext/zip |
| 508 |
my_conf="${my_conf} --with-pcre-regex=${EPREFIX}/usr --with-pcre-dir=${EPREFIX}/usr" |
508 |
my_conf+=" --with-pcre-regex=${EPREFIX}/usr --with-pcre-dir=${EPREFIX}/usr" |
| 509 |
|
509 |
|
| 510 |
# Catch CFLAGS problems |
510 |
# Catch CFLAGS problems |
| 511 |
# Fixes bug #14067. |
511 |
# Fixes bug #14067. |
|
Lines 513-519
src_configure() {
Link Here
|
| 513 |
replace-cpu-flags "k6*" "i586" |
513 |
replace-cpu-flags "k6*" "i586" |
| 514 |
|
514 |
|
| 515 |
# Support user-passed configuration parameters |
515 |
# Support user-passed configuration parameters |
| 516 |
my_conf="${my_conf} ${EXTRA_ECONF:-}" |
516 |
my_conf+=" ${EXTRA_ECONF:-}" |
| 517 |
|
517 |
|
| 518 |
# Support the Apache2 extras, they must be set globally for all |
518 |
# Support the Apache2 extras, they must be set globally for all |
| 519 |
# SAPIs to work correctly, especially for external PHP extensions |
519 |
# SAPIs to work correctly, especially for external PHP extensions |
| 520 |
- |
|
|