diff options
Diffstat (limited to 'git-curl-compat.h')
-rw-r--r-- | git-curl-compat.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/git-curl-compat.h b/git-curl-compat.h index fd96b3c..e1d0bdd 100644 --- a/git-curl-compat.h +++ b/git-curl-compat.h @@ -127,6 +127,15 @@ #endif /** + * Versions before curl 7.66.0 (September 2019) required manually setting the + * transfer-encoding for a streaming POST; after that this is handled + * automatically. + */ +#if LIBCURL_VERSION_NUM < 0x074200 +#define GIT_CURL_NEED_TRANSFER_ENCODING_HEADER +#endif + +/** * CURLOPT_PROTOCOLS_STR and CURLOPT_REDIR_PROTOCOLS_STR were added in 7.85.0, * released in August 2022. */ |