X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=config.m4;h=26832b9986f29798377242ab6f1510e4eb9691f1;hb=38fcb3745e511aba66ca87725f144f1d05ebe900;hp=3b3dfddd8ce08a68af0d9b9dc3a714f97897c259;hpb=edc84b40eb2c5be04492fa98fec5833a030782eb;p=m6w6%2Fext-http diff --git a/config.m4 b/config.m4 index 3b3dfdd..26832b9 100644 --- a/config.m4 +++ b/config.m4 @@ -79,6 +79,11 @@ dnl ---- CURL_LIBS=`$CURL_CONFIG --libs` + CURL_ZLIB= `$CURL_CONFIG --features | $EGREP libz` + if test "$CURL_ZLIB" = "libz"; then + AC_DEFINE([HTTP_HAVE_CURL_ZLIB], [1], [ ]) + fi + AC_MSG_CHECKING([for SSL support in libcurl]) CURL_SSL=`$CURL_CONFIG --features | $EGREP SSL` if test "$CURL_SSL" = "SSL"; then @@ -159,6 +164,7 @@ dnl ---- dnl HASH dnl ---- + AC_MSG_CHECKING(for ext/hash support) if test -x "$PHP_EXECUTABLE"; then if test "`$PHP_EXECUTABLE -m | $EGREP '^hash$'`" = "hash"; then if test -d ../hash; then @@ -167,25 +173,31 @@ dnl ---- old_CPPFLAGS=$CPPFLAGS CPPFLAGS=$INCLUDES AC_CHECK_HEADER([php_hash.h], [ + AC_MSG_RESULT(enabled) AC_DEFINE([HTTP_HAVE_EXT_HASH], [1], [Have ext/hash support]) ], [ AC_CHECK_HEADER([hash/php_hash.h], [ + AC_MSG_RESULT(enabled) AC_DEFINE([HTTP_HAVE_HASH_EXT_HASH], [1], [Have ext/hash support]) ], [ AC_CHECK_HEADER([ext/hash/php_hash.h], [ + AC_MSG_RESULT(enabled) AC_DEFINE([HTTP_HAVE_EXT_HASH_EXT_HASH], [1], [Have ext/hash support]) - ], [ + ], [ + AC_MSG_RESULT(disabled) ]) ]) ]) CPPFLAGS=$old_CPPFLAGS; fi elif test "$PHP_HASH" != "no" && test "x$PHP_HASH" != "x"; then + AC_MSG_RESULT(enabled) ifdef([PHP_ADD_EXTENSION_DEP], [ PHP_ADD_EXTENSION_DEP([http], [hash], 0) AC_DEFINE([HTTP_HAVE_EXT_HASH_EXT_HASH], [1], [Have ext/hash support]) - ], [ ]) + else + AC_MSG_RESULT(disabled) fi dnl ----