]> git.ipfire.org Git - thirdparty/git.git/blobdiff - http-pull.c
[PATCH] Build commands through object files
[thirdparty/git.git] / http-pull.c
index b2cecaea396625b41f12604944d9364383650f0a..da4d65ab9b95eaabdde8e6ddd308d7d8cd7e036b 100644 (file)
@@ -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;