From c9ae4ae075de3815f814dbf48d2336cf536de42c Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Sat, 30 Jun 2012 16:45:29 +0000 Subject: [PATCH] CURLOPT_TRANSFER_ENCODING supported since Curl > 7.21.6 --- src/http.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/http.c b/src/http.c index 4baceef..7fda573 100644 --- a/src/http.c +++ b/src/http.c @@ -91,7 +91,10 @@ static char *fetch_url(const char *url) curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, cbk_curl); curl_easy_setopt(curl, CURLOPT_WRITEDATA, content); curl_easy_setopt(curl, CURLOPT_USERAGENT, "ppastats/0.0"); +#ifdef CURLOPT_TRANSFER_ENCODING + /* added since Curl 7.21.7 */ curl_easy_setopt(curl, CURLOPT_TRANSFER_ENCODING, 1); +#endif if (curl_easy_perform(curl) == CURLE_OK) { curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); -- 2.7.4