diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-15 07:49:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-15 07:49:47 +0000 |
commit | d6460aff36a732aae91ede16133456be456f78f6 (patch) | |
tree | 83b95e80396f857e934ef3e83ea8831bac04d497 /curl-config.in | |
parent | a357f77c4c19552eb6efa56bfc335c81e7edcce7 (diff) | |
download | curl-d6460aff36a732aae91ede16133456be456f78f6.tar.gz |
added missing features to curl-config
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/curl-config.in b/curl-config.in index aec39a333..76157979a 100644 --- a/curl-config.in +++ b/curl-config.in @@ -60,6 +60,7 @@ while test $# -gt 0; do --feature|--features) if test "@USE_SSLEAY@" = "1"; then echo "SSL" + NTLM=1 fi if test "@KRB4_ENABLED@" = "1"; then echo "KRB4" @@ -73,6 +74,16 @@ while test $# -gt 0; do if test "@HAVE_ARES@" = "1"; then echo "AsynchDNS" fi + if test "@IDN_ENABLED@" = "1"; then + echo "IDN" + fi + if test "@USE_WINDOWS_SSPI@" = "1"; then + echo "SSPI" + NTLM=1 + fi + if test "$NTLM" = "1"; then + echo "NTLM" + fi ;; --protocols) |