diff options
author | Marcus Boerger <helly@php.net> | 2006-08-07 07:57:12 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-08-07 07:57:12 +0000 |
commit | e038500be3b5c54e790ff0d1d3d6d87dcf7daeb8 (patch) | |
tree | 201a6f45e1432f85c4705ee4f03cf016836bc085 /ext/dba | |
parent | 6c75d829975c0e1ecf72062436e289ab618bf2bb (diff) | |
download | php-git-e038500be3b5c54e790ff0d1d3d6d87dcf7daeb8.tar.gz |
- Fix bug #38290
Diffstat (limited to 'ext/dba')
-rw-r--r-- | ext/dba/config.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dba/config.m4 b/ext/dba/config.m4 index 6af3551811..7f2e125a92 100644 --- a/ext/dba/config.m4 +++ b/ext/dba/config.m4 @@ -493,7 +493,7 @@ AC_ARG_WITH(cdb, PHP_DBA_STD_ATTACH fi ],[ - if test "$PHP_DBA" != "no" || test "$HAVE_DBA" = "1"; then + if test "$PHP_DBA" != "no" && test "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_CDB fi ]) @@ -511,7 +511,7 @@ AC_ARG_WITH(inifile, PHP_DBA_BUILTIN_INI fi ],[ - if test "$PHP_DBA" != "no" || test "$HAVE_DBA" = "1"; then + if test "$PHP_DBA" != "no" && test "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_INI fi ]) @@ -532,7 +532,7 @@ AC_ARG_WITH(flatfile, PHP_DBA_BUILTIN_FLATFILE fi ],[ - if test "$PHP_DBA" != "no" || test "$HAVE_DBA" = "1"; then + if test "$PHP_DBA" != "no" && test "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_FLATFILE fi ]) |