diff options
author | ale <ale@FreeBSD.org> | 2006-11-07 01:43:11 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-11-07 01:43:11 +0800 |
commit | 7dd688082c3919698bfe6627b981bc8d4495841e (patch) | |
tree | 9f412571bc9b0316e7e4b4261d122946780fec66 /databases/php5-dba | |
parent | b7fc99fdb0b8947375a126d74105ec82c2cf81ea (diff) | |
download | freebsd-ports-gnome-7dd688082c3919698bfe6627b981bc8d4495841e.tar.gz freebsd-ports-gnome-7dd688082c3919698bfe6627b981bc8d4495841e.tar.zst freebsd-ports-gnome-7dd688082c3919698bfe6627b981bc8d4495841e.zip |
Update to 5.2.0 release.
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 + ]) |