diff options
Diffstat (limited to 'lang/php53/files/patch-acinclude.m4')
-rw-r--r-- | lang/php53/files/patch-acinclude.m4 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/php53/files/patch-acinclude.m4 b/lang/php53/files/patch-acinclude.m4 new file mode 100644 index 000000000000..32a0ca4c79c9 --- /dev/null +++ b/lang/php53/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 + |