summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-24 20:37:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-24 20:37:13 +0000
commit8a246a4a9ff68ec493147a15ca97a94b7291c834 (patch)
treeda1c83c0a4b5385c898e8b20d2cb01590d9608f4
parent2f684351bfd4c02f72a91434437ce2566d4f814b (diff)
downloadgnurl-8a246a4a9ff68ec493147a15ca97a94b7291c834.tar.gz
gnurl-8a246a4a9ff68ec493147a15ca97a94b7291c834.tar.bz2
gnurl-8a246a4a9ff68ec493147a15ca97a94b7291c834.zip
Yang Tse: removes GOPHER protocol when HTTP is disabled
-rw-r--r--lib/setup.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/setup.h b/lib/setup.h
index 2c74f5118..15c5a126d 100644
--- a/lib/setup.h
+++ b/lib/setup.h
@@ -310,6 +310,10 @@ typedef int curl_socket_t;
#endif
#endif
+#if defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_GOPHER)
+#define CURL_DISABLE_GOPHER
+#endif
+
#ifdef CURLDEBUG
#define DEBUGF(x) x
#else