wez Mon Nov 18 07:00:22 2002 EDT Modified files: /php4/ext/curl config.m4 Log: Re-enable the curlwrappers configure option. I still don't recommend it's use unless you are hacking both curl and PHP to make it work. Index: php4/ext/curl/config.m4 diff -u php4/ext/curl/config.m4:1.21 php4/ext/curl/config.m4:1.22 --- php4/ext/curl/config.m4:1.21 Wed Nov 13 17:25:33 2002 +++ php4/ext/curl/config.m4 Mon Nov 18 07:00:21 2002 @@ -1,13 +1,13 @@ dnl -dnl $Id: config.m4,v 1.21 2002/11/13 22:25:33 sterling Exp $ +dnl $Id: config.m4,v 1.22 2002/11/18 12:00:21 wez Exp $ dnl PHP_ARG_WITH(curl, for CURL support, [ --with-curl[=DIR] Include CURL support]) dnl Temporary option while we develop this aspect of the extension -dnl PHP_ARG_WITH(curlwrappers, if we should use CURL for url streams, -dnl [ --with-curlwrappers Use CURL for url streams], no, no) +PHP_ARG_WITH(curlwrappers, if we should use CURL for url streams, +[ --with-curlwrappers Use CURL for url streams], no, no) if test "$PHP_CURL" != "no"; then if test -r $PHP_CURL/include/curl/easy.h; then @@ -68,9 +68,9 @@ $CURL_LIBS -L$CURL_DIR/lib ]) -dnl if test "$PHP_CURLWRAPPERS" != "no" ; then -dnl AC_DEFINE(PHP_CURL_URL_WRAPPERS,1,[ ]) -dnl fi + if test "$PHP_CURLWRAPPERS" != "no" ; then + AC_DEFINE(PHP_CURL_URL_WRAPPERS,1,[ ]) + fi PHP_NEW_EXTENSION(curl, interface.c multi.c streams.c, $ext_shared) PHP_SUBST(CURL_SHARED_LIBADD)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php