summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 89ab859)
raw | patch | inline | side by side (parent: 89ab859)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Fri, 29 Jul 2005 02:24:13 +0000 (19:24 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 29 Jul 2005 17:21:19 +0000 (10:21 -0700) |
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>
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>
http-pull.c | patch | blob | history |
diff --git a/http-pull.c b/http-pull.c
index b2cecaea396625b41f12604944d9364383650f0a..da4d65ab9b95eaabdde8e6ddd308d7d8cd7e036b 100644 (file)
--- a/http-pull.c
+++ b/http-pull.c
#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;