X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=config9.m4;h=e5dd56602dca5b0435d5417ad0206add9f8d4445;hp=01e88c0c220572a26851b9f3c9de5e9a91e8f605;hb=ad5f896b03adaa073134a00108a9cdf00720673a;hpb=544386310b6f741953dac92f8735ae7339486510 diff --git a/config9.m4 b/config9.m4 index 01e88c0..e5dd566 100644 --- a/config9.m4 +++ b/config9.m4 @@ -75,11 +75,11 @@ if test "$PHP_HTTP" != "no"; then AC_DEFUN([HTTP_HAVE_PHP_EXT], [ extname=$1 haveext=$[PHP_]translit($1,a-z_-,A-Z__) - ishared=$[PHP_]translit($1,a-z_-,A-Z__)_SHARED AC_MSG_CHECKING([for ext/$extname support]) if test -x "$PHP_EXECUTABLE"; then - if test "`$PHP_EXECUTABLE -m | $EGREP ^$extname\$`" = "$extname"; then + grepext=`$PHP_EXECUTABLE -m | $EGREP ^$extname\$` + if test "$grepext" = "$extname"; then [HTTP_HAVE_EXT_]translit($1,a-z_-,A-Z__)=1 AC_MSG_RESULT([yes]) $2 @@ -98,6 +98,13 @@ if test "$PHP_HTTP" != "no"; then $3 fi ]) + + dnl + dnl odd PHP4 fix + dnl + if test "x$PHP_LIBDIR" = "x"; then + PHP_LIBDIR=lib + fi dnl ---- dnl STDC @@ -120,7 +127,7 @@ dnl ---- break; fi done - if test -z "$ZLIB_DIR"; then + if test "x$ZLIB_DIR" = "x"; then AC_MSG_RESULT([not found]) AC_MSG_ERROR([could not find zlib.h]) else @@ -150,7 +157,7 @@ dnl ---- break fi done - if test -z "$CURL_DIR"; then + if test "x$CURL_DIR" = "x"; then AC_MSG_RESULT([not found]) AC_MSG_ERROR([could not find curl/curl.h]) else @@ -165,7 +172,7 @@ dnl ---- break fi done - if test -z "$CURL_CONFIG"; then + if test "x$CURL_CONFIG" = "x"; then AC_MSG_RESULT([not found]) AC_MSG_ERROR([could not find curl-config]) else @@ -189,9 +196,10 @@ dnl ---- save_LIBS="$LIBS" LIBS= save_CFLAGS="$CFLAGS" - CFLAGS="`$CURL_CONFIG --cflags`" + CFLAGS=`$CURL_CONFIG --cflags` save_LDFLAGS="$LDFLAGS" - LDFLAGS="`$CURL_CONFIG --libs` $ld_runpath_switch$CURL_DIR/$PHP_LIBDIR" + LDFLAGS=`$CURL_CONFIG --libs` + LDFLAGS="$LDFLAGS $ld_runpath_switch$CURL_DIR/$PHP_LIBDIR" AC_MSG_CHECKING([for SSL support in libcurl]) CURL_SSL=`$CURL_CONFIG --feature | $EGREP SSL` @@ -263,7 +271,7 @@ dnl ---- break fi done - if test -z "$CURL_CAINFO"; then + if test "x$CURL_CAINFO" = "x"; then AC_MSG_RESULT([not found]) else AC_MSG_RESULT([$CURL_CAINFO]) @@ -272,7 +280,7 @@ dnl ---- PHP_ADD_INCLUDE($CURL_DIR/include) PHP_ADD_LIBRARY_WITH_PATH(curl, $CURL_DIR/$PHP_LIBDIR, HTTP_SHARED_LIBADD) - PHP_EVAL_LIBLINE($CURL_LIBS, HTTP_SHARED_LIBADD) + PHP_EVAL_LIBLINE(`$CURL_CONFIG --libs`, HTTP_SHARED_LIBADD) AC_DEFINE([HTTP_HAVE_CURL], [1], [Have cURL support]) PHP_CHECK_LIBRARY(curl, curl_share_strerror, @@ -320,7 +328,7 @@ dnl ---- break fi done - if test -z "$EVENT_DIR"; then + if test "x$EVENT_DIR" = "x"; then AC_MSG_RESULT([not found]) AC_MSG_WARN([continuing without libevent support]) else @@ -368,7 +376,7 @@ dnl ---- break fi done - if test -z "$MAGIC_DIR"; then + if test "x$MAGIC_DIR" = "x"; then AC_MSG_RESULT([not found]) AC_MSG_ERROR([could not find magic.h]) else @@ -397,7 +405,7 @@ dnl ---- fi fi done - if test -z "$HTTP_EXT_HASH_INCDIR"; then + if test "x$HTTP_EXT_HASH_INCDIR" = "x"; then AC_MSG_RESULT([not found]) else AC_MSG_RESULT([$HTTP_EXT_HASH_INCDIR])