summaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorTom G. Christensen <tgc@statsbiblioteket.dk>2015-02-03 17:30:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-02-03 21:53:17 (GMT)
commit1c2dbf2095beb5227d963a1541e356bd2e834dff (patch)
tree008f72412c1ed7d42eccf9994b352946aa825e0f /http.c
parentdd6139971a18e25a5089c0f96dc80e454683ef0b (diff)
downloadgit-1c2dbf2095beb5227d963a1541e356bd2e834dff.zip
git-1c2dbf2095beb5227d963a1541e356bd2e834dff.tar.gz
git-1c2dbf2095beb5227d963a1541e356bd2e834dff.tar.bz2
http: support curl < 7.10.7
Commit dd61399 introduced support for http proxies that require authentication but it relies on the CURL_PROXYAUTH option which was added in curl 7.10.7. This makes sure proxy authentication is only enabled if libcurl can support it. Signed-off-by: Tom G. Christensen <tgc@statsbiblioteket.dk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.c')
-rw-r--r--http.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/http.c b/http.c
index 8ac8eb6..9376887 100644
--- a/http.c
+++ b/http.c
@@ -297,7 +297,9 @@ static CURL *get_curl_handle(void)
if (curl_http_proxy) {
curl_easy_setopt(result, CURLOPT_PROXY, curl_http_proxy);
+#if LIBCURL_VERSION_NUM >= 0x070a07
curl_easy_setopt(result, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
+#endif
}
return result;