Skip to content

Commit

Permalink
Merge branch 'jc/curl'
Browse files Browse the repository at this point in the history
* jc/curl:
  Work around http-fetch built with cURL 7.16.0
  • Loading branch information
Junio C Hamano committed Dec 29, 2006
2 parents 4d06f8a + 500ebb0 commit 1ed4813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#define curl_global_init(a) do { /* nothing */ } while(0)
#endif

#if LIBCURL_VERSION_NUM < 0x070c04
#if (LIBCURL_VERSION_NUM < 0x070c04) || (LIBCURL_VERSION_NUM == 0x071000)
#define NO_CURL_EASY_DUPHANDLE
#endif

Expand Down

0 comments on commit 1ed4813

Please sign in to comment.