diff options
author | Nick Hengeveld <nickh@reactrix.com> | 2005-11-18 17:08:36 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-19 20:17:25 -0800 |
commit | 0890098780f295f2a58658d1f6b6627e40426c72 (patch) | |
tree | 58111a62fae0969210ab8237755a47f32cb7c5e4 /http-push.c | |
parent | 11979b98adc301fed84122237d0d5a26a360fede (diff) | |
download | git-0890098780f295f2a58658d1f6b6627e40426c72.tar.gz |
Decide whether to build http-push in the Makefile
The decision about whether to build http-push or not belongs in the
Makefile. This follows Junio's suggestion to determine whether curl
is new enough to support http-push.
Signed-off-by: Nick Hengeveld <nickh@reactrix.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/http-push.c b/http-push.c index f3c92c971e..76c788673e 100644 --- a/http-push.c +++ b/http-push.c @@ -6,8 +6,6 @@ #include "blob.h" #include "http.h" -#ifdef USE_CURL_MULTI - #include <expat.h> static const char http_push_usage[] = @@ -1426,10 +1424,3 @@ int main(int argc, char **argv) return rc; } -#else /* ifdef USE_CURL_MULTI */ -int main(int argc, char **argv) -{ - fprintf(stderr, "http-push requires curl 7.9.8 or higher.\n"); - return 1; -} -#endif |