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/php4/files/patch-acinclude.m4 | |
parent | 0a257c6bbd5f4ee4cb270242277bc14ea8fb2f57 (diff) | |
download | ports-2cee0c25ff8d89399897cac7c1dcb1444b2f79d3.tar.gz ports-2cee0c25ff8d89399897cac7c1dcb1444b2f79d3.zip |
Notes
Diffstat (limited to 'lang/php4/files/patch-acinclude.m4')
-rw-r--r-- | lang/php4/files/patch-acinclude.m4 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/php4/files/patch-acinclude.m4 b/lang/php4/files/patch-acinclude.m4 new file mode 100644 index 000000000000..aa1a2e8d683c --- /dev/null +++ b/lang/php4/files/patch-acinclude.m4 @@ -0,0 +1,14 @@ +--- acinclude.m4.orig Mon Apr 4 10:30:15 2005 ++++ acinclude.m4 Mon Apr 4 10:33:00 2005 +@@ -1685,9 +1685,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 + |