X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_request_api.c;h=1acd53ad57044625eecd98d50c85a2ee73d1ff3f;hp=b2da719eae325f4d87975739530a02a805b5b6ae;hb=c18bf30da36029eabb2367c0751cb763d67eb6b0;hpb=dfe2dbf042d42f83255b6ff46c2210bcd57ca586 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, "");