diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-12-03 19:54:55 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-12-03 19:54:55 +0000 |
commit | 9666f1deae9115cc9bec64d2f0d3b6db19a79ac3 (patch) | |
tree | 8679b283bf883142702b572d769832106c56b1e8 /ext/dba/config.m4 | |
parent | 7999c9d251f64460fee869898d6ad873fb2bd337 (diff) | |
download | php-git-9666f1deae9115cc9bec64d2f0d3b6db19a79ac3.tar.gz |
Config fix from Gentoo
Diffstat (limited to 'ext/dba/config.m4')
-rw-r--r-- | ext/dba/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dba/config.m4 b/ext/dba/config.m4 index 2beaca25b0..3adb978484 100644 --- a/ext/dba/config.m4 +++ b/ext/dba/config.m4 @@ -463,7 +463,7 @@ AC_DEFUN([PHP_DBA_BUILTIN_CDB],[ AC_ARG_WITH(cdb, [ --with-cdb[=DIR] DBA: Include CDB support],[ - if test "$withval" = "yes" || test "$HAVE_DBA" = "1"; then + if test "$withval" = "yes" && test "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_CDB elif test "$withval" != "no"; then PHP_DBA_STD_BEGIN |