summaryrefslogtreecommitdiff
path: root/ext/dba/config.m4
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-07-13 15:09:19 +0000
committerJani Taskinen <jani@php.net>2007-07-13 15:09:19 +0000
commitad61002dc490fcfa823e052564e07cff80da911a (patch)
tree5985603617c223bc790d3b75234084aaa578d655 /ext/dba/config.m4
parent9d53e19697d848a46f881f3ba648d8b7d47fbb84 (diff)
downloadphp-git-ad61002dc490fcfa823e052564e07cff80da911a.tar.gz
MFH: fix wrong logic
Diffstat (limited to 'ext/dba/config.m4')
-rw-r--r--ext/dba/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dba/config.m4 b/ext/dba/config.m4
index c1bdd94ae5..b82904b0f1 100644
--- a/ext/dba/config.m4
+++ b/ext/dba/config.m4
@@ -477,7 +477,7 @@ PHP_DBA_STD_RESULT(dbm)
dnl
dnl Bundled modules that should be enabled by default if any other option is enabled
dnl
-if test "$PHP_DBA" != "no" || test "$HAVE_DBA" = "1" || test "$with_cdb" != "no" || test "$enable_inifile" != "no" || test "$enable_flatfile" != "no"; then
+if test "$PHP_DBA" != "no" || test "$HAVE_DBA" = "1" || test "$with_cdb" = "yes" || test "$enable_inifile" = "yes" || test "$enable_flatfile" = "yes"; then
php_dba_enable=yes
else
php_dba_enable=no