From fd3881eaa6b2775b19ef86f7af068e80c69ae6a6 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 11 Jun 2002 11:13:29 +0000 Subject: added --disable-[protocol] support --- curl-config.in | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'curl-config.in') 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) -- cgit v1.2.1