diff options
author | Alex Dupre <ale@FreeBSD.org> | 2005-04-04 09:20:21 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2005-04-04 09:20:21 +0000 |
commit | 2cee0c25ff8d89399897cac7c1dcb1444b2f79d3 (patch) | |
tree | b8af981bc9d3d6808bfc8842257bfae900b60870 /lang/php5/files/patch-acinclude.m4 | |
parent | - Update to 0.991, aka 1.0beta1 (diff) |
Update PHP ports to 4.3.11 and 5.0.4 releases:
- fix security issues
- unbreak PEAR packages [1]
PR: ports/78516 [1]
Submitted by: Yen-Ming Lee <leeym@utopia.leeym.com> [1]
Tested by: thierry
Notes
Notes:
svn path=/head/; revision=132440
Diffstat (limited to 'lang/php5/files/patch-acinclude.m4')
-rw-r--r-- | lang/php5/files/patch-acinclude.m4 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/php5/files/patch-acinclude.m4 b/lang/php5/files/patch-acinclude.m4 new file mode 100644 index 000000000000..32a0ca4c79c9 --- /dev/null +++ b/lang/php5/files/patch-acinclude.m4 @@ -0,0 +1,14 @@ +--- acinclude.m4.orig Tue Jan 25 14:02:45 2005 ++++ acinclude.m4 Mon Apr 4 11:09:25 2005 +@@ -1681,9 +1681,9 @@ + unset OPENSSL_LIBDIR + + dnl Fallbacks for different configure options +- if test "$PHP_OPENSSL" != "no"; then ++ if test -n "$PHP_OPENSSL" && test "$PHP_OPENSSL" != "no"; then + PHP_OPENSSL_DIR=$PHP_OPENSSL +- elif test "$PHP_IMAP_SSL" != "no"; then ++ elif test -n "$PHP_IMAP_SSL" && test "$PHP_IMAP_SSL" != "no"; then + PHP_OPENSSL_DIR=$PHP_IMAP_SSL + fi + |