From: foobar Date: Tue, 30 Sep 2003 18:08:57 +0000 (+0000) Subject: MFH: Fixed bug #25703 (openssl checks failed) X-Git-Tag: php-4.3.4RC2~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2a74cf34420722da4d03a52c2308dd22a2fcc2f;p=php MFH: Fixed bug #25703 (openssl checks failed) --- diff --git a/NEWS b/NEWS index 2c4c377797..76fc627350 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? Oct 2003, Version 4.3.4RC2 +- Fixed bug #25703 (openssl checks failed). (Jani) - Fixed bug #25669 (eregi() with non-ascii characters). (Moriyoshi) 29 Sep 2003, Version 4.3.4RC1 diff --git a/acinclude.m4 b/acinclude.m4 index bdc9c8fcfa..d61667c3b0 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1599,7 +1599,7 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[ fi dnl If pkg-config is found try using it - if test "$PHP_OPENSSL" = "yes" && test -x "$PKG_CONFIG"; then + if test "$PHP_OPENSSL" = "yes" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists openssl; then if $PKG_CONFIG --atleast-version=0.9.6 openssl; then found_openssl=yes OPENSSL_LIBS=`$PKG_CONFIG --libs openssl`