From: Michael Wallner Date: Thu, 9 Nov 2006 13:42:28 +0000 (+0000) Subject: - fix bug #9282 (bad configure check for libcurl version) X-Git-Tag: RELEASE_1_4_0RC1~20 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=8c1ed3eb9cb4d30b619cbf7a7a1141687cadeaaa - fix bug #9282 (bad configure check for libcurl version) --- diff --git a/config9.m4 b/config9.m4 index 8ad36a3..8bedac7 100644 --- a/config9.m4 +++ b/config9.m4 @@ -170,7 +170,7 @@ dnl ---- AC_MSG_CHECKING([for curl version >= 7.12.3]) CURL_VERSION=`$CURL_CONFIG --version | $SED -e 's/[[^0-9\.]]//g'` AC_MSG_RESULT([$CURL_VERSION]) - if test `echo $CURL_VERSION | $AWK '{print $1*10000 + $2*100 + $3}'` -lt 71203; then + if test `echo $CURL_VERSION | $SED -e 's/[[^0-9]]/ /g' | $AWK '{print $1*10000 + $2*100 + $3}'` -lt 71203; then AC_MSG_ERROR([libcurl version greater or equal to 7.12.3 required]) fi diff --git a/package2.xml b/package2.xml index 5866912..684b39d 100644 --- a/package2.xml +++ b/package2.xml @@ -45,6 +45,7 @@ support. Parallel requests are available for PHP 5 and greater. * Fixed aborted PUT request when empty put data was set with HttpRequest::setPutData() * Fixed crash when using non-associative arrays as request headers * Fixed crash when serializing incomplete HttpMessage objects +* Fixed bug #9282: libcurl version error in configure (keith at iveys dot org) ]]>