From 57d2fb41d093a62f0e1ddfdfb94f136a0f4ab3a4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 29 Oct 2007 22:13:00 +0000 Subject: Based on one of those bug reports that are intercepted by a distro's bug tracker (https://bugzilla.redhat.com/show_bug.cgi?id=316191), I now made curl-config --features and --protocols show the correct output when built with NSS. --- curl-config.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'curl-config.in') diff --git a/curl-config.in b/curl-config.in index 157837143..ce98bdee3 100644 --- a/curl-config.in +++ b/curl-config.in @@ -83,7 +83,7 @@ while test $# -gt 0; do if test "@USE_SSLEAY@" = "1"; then echo "SSL" NTLM=1 # OpenSSL implies NTLM - elif test -n "@USE_GNUTLS@"; then + elif test -n "@SSL_ENABLED@"; then echo "SSL" fi if test "@KRB4_ENABLED@" = "1"; then @@ -113,13 +113,13 @@ while test $# -gt 0; do --protocols) if test "@CURL_DISABLE_HTTP@" != "1"; then echo "HTTP" - if test "@USE_SSLEAY@" = "1"; then + if test "@SSL_ENABLED@" = "1"; then echo "HTTPS" fi fi if test "@CURL_DISABLE_FTP@" != "1"; then echo "FTP" - if test "@USE_SSLEAY@" = "1"; then + if test "@SSL_ENABLED@" = "1"; then echo "FTPS" fi fi -- cgit v1.2.1