helly Mon Aug 7 07:54:58 2006 UTC Modified files: /php-src/ext/dba config.m4 Log: - Fix bug #38290 http://cvs.php.net/viewvc.cgi/php-src/ext/dba/config.m4?r1=1.71&r2=1.72&diff_format=u Index: php-src/ext/dba/config.m4 diff -u php-src/ext/dba/config.m4:1.71 php-src/ext/dba/config.m4:1.72 --- php-src/ext/dba/config.m4:1.71 Mon Aug 22 19:59:19 2005 +++ php-src/ext/dba/config.m4 Mon Aug 7 07:54:58 2006 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4,v 1.71 2005/08/22 19:59:19 iliaa Exp $ +dnl $Id: config.m4,v 1.72 2006/08/07 07:54:58 helly Exp $ dnl dnl Suppose we need FlatFile if no support or only CDB is used. @@ -493,7 +493,7 @@ PHP_DBA_STD_ATTACH fi ],[ - if test "$PHP_DBA" != "no" -o "$HAVE_DBA" = "1"; then + if test "$PHP_DBA" != "no" && test "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_CDB fi ]) @@ -511,7 +511,7 @@ PHP_DBA_BUILTIN_INI fi ],[ - if test "$PHP_DBA" != "no" -o "$HAVE_DBA" = "1"; then + if test "$PHP_DBA" != "no" && test "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_INI fi ]) @@ -532,7 +532,7 @@ PHP_DBA_BUILTIN_FLATFILE fi ],[ - if test "$PHP_DBA" != "no" -o "$HAVE_DBA" = "1"; then + if test "$PHP_DBA" != "no" && test "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_FLATFILE fi ])
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php