Index: ext/curl/config.m4 =================================================================== RCS file: /repository/php-src/ext/curl/config.m4,v retrieving revision 1.20.2.2.2.1 diff -u -p -d -r1.20.2.2.2.1 config.m4 --- ext/curl/config.m4 2 Nov 2005 15:03:36 -0000 1.20.2.2.2.1 +++ ext/curl/config.m4 22 Nov 2005 22:27:13 -0000 @@ -50,21 +50,21 @@ if test "$PHP_CURL" != "no"; then fi AC_MSG_CHECKING([for SSL support in libcurl]) - CURL_SSL=`$CURL_CONFIG --features | $EGREP SSL` - if test "$CURL_SSL" == "SSL"; then + 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]) AC_MSG_CHECKING([for SSL library used]) CURL_SSL_FLAVOUR= for i in $CURL_LIBS; do - if test "$i" == "-lssl"; then + if test "$i" = "-lssl"; then CURL_SSL_FLAVOUR="openssl" AC_MSG_RESULT([openssl]) AC_DEFINE([HAVE_CURL_OPENSSL], [1], [Have cURL with OpenSSL support]) AC_CHECK_HEADERS([openssl/crypto.h]) break - elif test "$i" == "-lgnutls"; then + elif test "$i" = "-lgnutls"; then CURL_SSL_FLAVOUR="gnutls" AC_MSG_RESULT([gnutls]) AC_DEFINE([HAVE_CURL_GNUTLS], [1], [Have cURL with GnuTLS support])