diff options
author | Alex Dupre <ale@FreeBSD.org> | 2006-11-06 17:43:11 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2006-11-06 17:43:11 +0000 |
commit | 8fbcab85d9ace37305253f5145e936118101448c (patch) | |
tree | cb6e626ffd47af169d8e7698cf5cd88392959be4 /databases/php5-dba | |
parent | 0e4aaea53687b782547527ccff1586b1ae9e6453 (diff) |
Notes
Diffstat (limited to 'databases/php5-dba')
-rw-r--r-- | databases/php5-dba/files/patch-config.m4 | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/databases/php5-dba/files/patch-config.m4 b/databases/php5-dba/files/patch-config.m4 index cc37f14f5373..d90ca7178bd1 100644 --- a/databases/php5-dba/files/patch-config.m4 +++ b/databases/php5-dba/files/patch-config.m4 @@ -1,6 +1,6 @@ ---- config.m4.orig Mon Aug 22 21:59:36 2005 -+++ config.m4 Thu Sep 8 10:48:31 2005 -@@ -240,6 +240,18 @@ +--- config.m4.orig Mon Aug 7 09:57:12 2006 ++++ config.m4 Sat Nov 4 11:18:16 2006 +@@ -244,6 +244,18 @@ THIS_PREFIX=$i THIS_INCLUDE=$i/db4/db.h break @@ -19,3 +19,30 @@ elif test -f "$i/include/db4/db.h"; then THIS_PREFIX=$i THIS_INCLUDE=$i/include/db4/db.h +@@ -493,7 +505,7 @@ + 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 +523,7 @@ + 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 +544,7 @@ + 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 + ]) |