diff options
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 + |