diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-08-07 21:45:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-08-07 21:45:59 +0000 |
commit | 8f219af884dcb330d96d71928c9bbdd003919b4b (patch) | |
tree | 5459014ea4c29600bc13e96a4842687cc5a75084 /curl-config.in | |
parent | aeb04136f7c2c72f9005546bfff22c4046f93a74 (diff) | |
download | curl-8f219af884dcb330d96d71928c9bbdd003919b4b.tar.gz |
When curl is built with GnuTLS, curl-config didn't include "SSL" when
--features was used
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/curl-config.in b/curl-config.in index 76157979a..b755ad5a4 100644 --- a/curl-config.in +++ b/curl-config.in @@ -60,7 +60,9 @@ while test $# -gt 0; do --feature|--features) if test "@USE_SSLEAY@" = "1"; then echo "SSL" - NTLM=1 + NTLM=1 # OpenSSL implies NTLM + elif test -n "@USE_GNUTLS@"; then + echo "SSL" fi if test "@KRB4_ENABLED@" = "1"; then echo "KRB4" |