From df3ca59116bff161c0fa44b1af7915dc8c1da20e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 11 Dec 2004 18:47:22 +0000 Subject: Dan Fandrich: Here's a stab at a consolidation of the SSL detection heuristics into configure. Source files aren't changed by this patch, except for setup.h and the various config*.h files. Within the configure script, OPENSSL_ENABLED is used to determine if SSL is being used or not, and outside configure, USE_SSLEAY means the same thing; this could be even further unified some day. Now, when SSL is not detected, configure skips the various checks that are dependent on SSL, speeding up the configure process and avoiding complications with cross compiles. I also updated all the architecture- specific config files I could see, but I couldn't test them. --- curl-config.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'curl-config.in') diff --git a/curl-config.in b/curl-config.in index bc8a0128c..ef780273f 100644 --- a/curl-config.in +++ b/curl-config.in @@ -45,19 +45,19 @@ while test $# -gt 0; do case "$1" in --ca) - echo @CURL_CA_BUNDLE@ + echo "@CURL_CA_BUNDLE@" ;; --cc) - echo @CC@ + echo "@CC@" ;; --prefix) - echo $prefix + echo "$prefix" ;; --feature) - if test "@OPENSSL_ENABLED@" = "1"; then + if test "@USE_SSLEAY@" = "1"; then echo "SSL" fi if test "@KRB4_ENABLED@" = "1"; then -- cgit v1.2.1