X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_client_curl.c;h=97408bddb469deb3901bd8ddd561880c0fd8e5dc;hp=df2bb11b6358a4408226268f8c91247900e6e1e2;hb=27b7c648120c1f061ba7c494441347cdb891eea4;hpb=3d2d2a1c7727f26905863e6ac72e1e021fea133f diff --git a/php_http_client_curl.c b/php_http_client_curl.c index df2bb11..97408bd 100644 --- a/php_http_client_curl.c +++ b/php_http_client_curl.c @@ -934,6 +934,9 @@ static STATUS php_http_curle_option_set_compress(php_http_option_t *opt, zval *v php_http_client_curl_handler_t *curl = userdata; CURL *ch = curl->handle; +#if !PHP_HTTP_CURL_VERSION(7,21,6) +# define CURLOPT_ACCEPT_ENCODING CURLOPT_ENCODING +#endif if (CURLE_OK != curl_easy_setopt(ch, CURLOPT_ACCEPT_ENCODING, Z_BVAL_P(val) ? "" : NULL)) { return FAILURE; }