jani Fri Jul 13 15:09:19 2007 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/dba config.m4 Log: MFH: fix wrong logic http://cvs.php.net/viewvc.cgi/php-src/ext/dba/config.m4?r1=1.70.2.2.2.6&r2=1.70.2.2.2.7&diff_format=u Index: php-src/ext/dba/config.m4 diff -u php-src/ext/dba/config.m4:1.70.2.2.2.6 php-src/ext/dba/config.m4:1.70.2.2.2.7 --- php-src/ext/dba/config.m4:1.70.2.2.2.6 Fri Jul 13 14:23:59 2007 +++ php-src/ext/dba/config.m4 Fri Jul 13 15:09:19 2007 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4,v 1.70.2.2.2.6 2007/07/13 14:23:59 jani Exp $ +dnl $Id: config.m4,v 1.70.2.2.2.7 2007/07/13 15:09:19 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