diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-01-21 17:34:43 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-22 00:48:29 -0800 |
commit | 4f5f998fbd64c997ea875d69fd86b6362e04ce9b (patch) | |
tree | 414b97e7e377b51dca017b19eaecfe0ac5f2dd9d /http.h | |
parent | 6fc74703dee571859d8be270f5496f4c9b2ff9c7 (diff) | |
download | git-4f5f998fbd64c997ea875d69fd86b6362e04ce9b.tar.gz git-4f5f998fbd64c997ea875d69fd86b6362e04ce9b.tar.xz |
Clarify that http-push being temporarily disabled with older cURL
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.h')
-rw-r--r-- | http.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -8,6 +8,14 @@ #include "strbuf.h" +/* + * We detect based on the cURL version if multi-transfer is + * usable in this implementation and define this symbol accordingly. + * This is not something Makefile should set nor users should pass + * via CFLAGS. + */ +#undef USE_CURL_MULTI + #if LIBCURL_VERSION_NUM >= 0x071000 #define USE_CURL_MULTI #define DEFAULT_MAX_REQUESTS 5 |