From c18bf30da36029eabb2367c0751cb763d67eb6b0 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 17 Oct 2005 16:28:35 +0000 Subject: [PATCH] - encodings support exists with ext/zlib too --- http_api.c | 2 +- http_request_api.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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, ""); -- 2.30.2