jani Fri Jul 13 15:08:55 2007 UTC
Modified files:
/php-src/ext/dba config.m4
Log:
- fix wrong logic
http://cvs.php.net/viewvc.cgi/php-src/ext/dba/config.m4?r1=1.75&r2=1.76&diff_format=u
Index: php-src/ext/dba/config.m4
diff -u php-src/ext/dba/config.m4:1.75 php-src/ext/dba/config.m4:1.76
--- php-src/ext/dba/config.m4:1.75 Fri Jul 13 14:23:41 2007
+++ php-src/ext/dba/config.m4 Fri Jul 13 15:08:55 2007
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4,v 1.75 2007/07/13 14:23:41 jani Exp $
+dnl $Id: config.m4,v 1.76 2007/07/13 15:08:55 jani Exp $
dnl
dnl Suppose we need FlatFile if no support or only CDB is used.
@@ -477,7 +477,7 @@
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
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php