From af34ed0d970b2fee7bfde12170b4acd6814742e4 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 22 Nov 2005 22:53:34 +0000 Subject: [PATCH] fix #35341 (Fix for bug #33760 breaks build with older curl) --- NEWS | 1 + ext/curl/config.m4 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 1e03755015..77fe45f7fe 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? Nov 2005, PHP 5.1 +- Fixed bug #35341 (Fix for bug #33760 breaks build with older curl). (Tony) - Fixed bug #35303 (PDO prepare() crashes with invalid parameters). (Ilia) - Fixed bug #35293 (PDO segfaults when using persistent connections). (Tony) - Fixed bug #35278 (Multiple virtual() calls crash Apache 2 php module). (Ilia) diff --git a/ext/curl/config.m4 b/ext/curl/config.m4 index 94baf6af22..fdea836c92 100644 --- a/ext/curl/config.m4 +++ b/ext/curl/config.m4 @@ -50,7 +50,7 @@ if test "$PHP_CURL" != "no"; then fi AC_MSG_CHECKING([for SSL support in libcurl]) - CURL_SSL=`$CURL_CONFIG --features | $EGREP SSL` + CURL_SSL=`$CURL_CONFIG --feature | $EGREP SSL` if test "$CURL_SSL" = "SSL"; then AC_MSG_RESULT([yes]) AC_DEFINE([HAVE_CURL_SSL], [1], [Have cURL with SSL support]) -- 2.40.0