summaryrefslogtreecommitdiff
path: root/http-pull.c
diff options
context:
space:
mode:
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 b2cecae..da4d65a 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;