Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2005-07-29 06:24:13 +0400
committerJunio C Hamano <junkio@cox.net>2005-07-29 21:21:19 +0400
commit4a30976e285139a6dd9c08b8893fd0b11e84c0c3 (patch)
tree921e42e794571ecabbe9d9154ceeaa3fd68d85ed /http-pull.c
parent89ab859e9452cbc8f1f15afab52257e9b789c899 (diff)
[PATCH] support older versions of libcurl
Some newer features of libcurl are used which are not strictly necessary for http-pull. Use them only if libcurl is new enough to know about them. [jc: I just reworked #ifdef sprinkled all over the code into a single section that defines a set of macros.] Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'http-pull.c')
-rw-r--r--http-pull.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/http-pull.c b/http-pull.c
index b2cecaea39..da4d65ab9b 100644
--- a/http-pull.c
+++ b/http-pull.c
@@ -6,6 +6,16 @@
#include <curl/curl.h>
#include <curl/easy.h>
+#if LIBCURL_VERSION_NUM < 0x070704
+#define curl_global_cleanup() do { /* nothing */ } while(0)
+#endif
+#if LIBCURL_VERSION_NUM < 0x070800
+#define curl_global_init(a) do { /* nothing */ } while(0)
+#endif
+#if LIBCURL_VERSION_NUM < 0x070907
+#define curl_easy_setopt(a, b, c) do { /* nothing */ } while(0)
+#endif
+
static CURL *curl;
static char *base;