diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-09-19 11:00:17 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-09-19 11:03:34 +0200 |
commit | 39dff07a2766d8acd42e596139597b6a2e76f86a (patch) | |
tree | 391b53c696c6e80caaf3d320edcb0b069462982e | |
parent | 84e6c7a9e58ebddc417217ea8c1aa1dad96aa7a9 (diff) |
HTTP_ONLY: disable more protocols
-rw-r--r-- | lib/setup.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/setup.h b/lib/setup.h index a45d116f4..6d2dc90a8 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -188,6 +188,24 @@ # ifndef CURL_DISABLE_RTSP # define CURL_DISABLE_RTSP # endif +# ifndef CURL_DISABLE_POP3 +# define CURL_DISABLE_POP3 +# endif +# ifndef CURL_DISABLE_IMAP +# define CURL_DISABLE_IMAP +# endif +# ifndef CURL_DISABLE_SMTP +# define CURL_DISABLE_SMTP +# endif +# ifndef CURL_DISABLE_RTSP +# define CURL_DISABLE_RTSP +# endif +# ifndef CURL_DISABLE_RTMP +# define CURL_DISABLE_RTMP +# endif +# ifndef CURL_DISABLE_GOPHER +# define CURL_DISABLE_GOPHER +# endif #endif /* |