summaryrefslogtreecommitdiff
path: root/curl-config.in
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-11 11:13:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-11 11:13:29 +0000
commitfd3881eaa6b2775b19ef86f7af068e80c69ae6a6 (patch)
tree11f4c27474093602b2eab64fbff05e410166a0fd /curl-config.in
parent08ef208fb78fb2eabc5cec08c23e74e251eac898 (diff)
downloadcurl-fd3881eaa6b2775b19ef86f7af068e80c69ae6a6.tar.gz
added --disable-[protocol] support
Diffstat (limited to 'curl-config.in')
-rw-r--r--curl-config.in21
1 files changed, 21 insertions, 0 deletions
diff --git a/curl-config.in b/curl-config.in
index a28fbb8ab..1eba2e00e 100644
--- a/curl-config.in
+++ b/curl-config.in
@@ -61,6 +61,27 @@ while test $# -gt 0; do
if test "@IPV6_ENABLED@" = "1"; then
echo "IPv6"
fi
+ if test "@CURL_DISABLE_HTTP@" = "1"; then
+ echo "HTTP-disabled"
+ fi
+ if test "@CURL_DISABLE_FTP@" = "1"; then
+ echo "FTP-disabled"
+ fi
+ if test "@CURL_DISABLE_GOPHER@" = "1"; then
+ echo "GOPHER-disabled"
+ fi
+ if test "@CURL_DISABLE_FILE@" = "1"; then
+ echo "FILE-disabled"
+ fi
+ if test "@CURL_DISABLE_TELNET@" = "1"; then
+ echo "TELNET-disabled"
+ fi
+ if test "@CURL_DISABLE_LDAP@" = "1"; then
+ echo "LDAP-disabled"
+ fi
+ if test "@CURL_DISABLE_DICT@" = "1"; then
+ echo "DICT-disabled"
+ fi
;;
--version)