From: Michael Wallner Date: Mon, 17 Oct 2005 16:28:35 +0000 (+0000) Subject: - encodings support exists with ext/zlib too X-Git-Tag: RELEASE_0_16_0~5 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=c18bf30da36029eabb2367c0751cb763d67eb6b0 - encodings support exists with ext/zlib too --- diff --git a/http_api.c b/http_api.c index d689c86..3e8ec02 100644 --- a/http_api.c +++ b/http_api.c @@ -79,7 +79,7 @@ PHP_HTTP_API long _http_support(long feature) #ifdef HTTP_HAVE_MAGIC support |= HTTP_SUPPORT_MAGICMIME; #endif -#ifdef HTTP_HAVE_ZLIB +#if defined(HTTP_HAVE_ZLIB) || defined(HAVE_ZLIB) support |= HTTP_SUPPORT_ENCODINGS; #endif diff --git a/http_request_api.c b/http_request_api.c index b2da719..1acd53a 100644 --- a/http_request_api.c +++ b/http_request_api.c @@ -436,7 +436,7 @@ PHP_HTTP_API STATUS _http_request_init(CURL *ch, http_request_method meth, char /* compress, empty string enables all supported if libcurl was build with zlib support */ if ((zoption = http_curl_getopt(options, "compress", IS_BOOL)) && Z_LVAL_P(zoption)) { -#ifdef HTTP_HAVE_ZLIB +#if defined(HTTP_HAVE_ZLIB) || defined(HAVE_ZLIB) HTTP_CURL_OPT(ENCODING, "gzip;q=1.0, deflate;q=0.5, *;q=0"); #else HTTP_CURL_OPT(ENCODING, "");