X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=config.m4;h=ec5b519e701ae60cd64d688900f5cb15cbbb80cd;hp=62dcb4f04b1a116be03684e41424d43a920444db;hb=3e637b9941c071b4fef38a7cde0cd6e2357ee4f0;hpb=10025ba0ed0c9c8a509441ad1b9d6db633af8596 diff --git a/config.m4 b/config.m4 index 62dcb4f..ec5b519 100644 --- a/config.m4 +++ b/config.m4 @@ -3,7 +3,7 @@ dnl $Id$ PHP_ARG_ENABLE([http], [whether to enable extended HTTP support], [ --enable-http Enable extended HTTP support]) -PHP_ARG_WITH([http-curl-requests], [wheter to enable cURL HTTP requests], +PHP_ARG_WITH([http-curl-requests], [whether to enable cURL HTTP requests], [ --with-http-curl-requests[=CURLDIR] With cURL HTTP request support]) PHP_ARG_WITH([http-mhash-etags], [whether to enable mhash ETag generator], @@ -62,7 +62,7 @@ dnl ---- fi CURL_SSL=`$CURL_CONFIG --features | $EGREP SSL` - if test CURL_SSL == "SSL"; then + if test "$CURL_SSL" == "SSL"; then AC_DEFINE([HTTP_HAVE_SSL], [1], [ ]) fi AC_CHECK_HEADERS([openssl/crypto.h]) @@ -82,6 +82,10 @@ dnl ---- [AC_DEFINE([HAVE_CURL_EASY_STRERROR], [1], [ ])], [ ], [$CURL_LIBS -L$CURL_DIR/$PHP_LIBDIR] ) + PHP_CHECK_LIBRARY(curl, curl_easy_reset, + [AC_DEFINE([HAVE_CURL_EASY_RESET], [1], [ ])], [ ], + [$CURL_LIBS -L$CURL_DIR/$PHP_LIBDIR] + ) fi dnl ----