diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-09-05 10:45:09 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-05 10:45:09 +0200 |
commit | 889723b004667abc061f9a23e928aba064b7f2a0 (patch) | |
tree | e2473808ffb1e69188b614962a87df4eaf9709f1 /configure.ac | |
parent | 3130414ce715deb15e6fbd2019362bfee67ca2b4 (diff) | |
download | curl-889723b004667abc061f9a23e928aba064b7f2a0.tar.gz |
configure: add MultiSSL to FEATURES when enabled
...for curl-config and its corresponding test 1014
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 27d560f83..93f1fa007 100755 --- a/configure.ac +++ b/configure.ac @@ -2471,6 +2471,7 @@ x1) # one SSL backend is enabled AC_SUBST(SSL_ENABLED) SSL_ENABLED="1" + AC_MSG_NOTICE([built with one SSL backend]) ;; *) # more than one SSL backend is enabled @@ -2479,6 +2480,7 @@ x1) AC_SUBST(CURL_WITH_MULTI_SSL) CURL_WITH_MULTI_SSL="1" AC_DEFINE(CURL_WITH_MULTI_SSL, 1, [built with multiple SSL backends]) + AC_MSG_NOTICE([built with multiple SSL backends]) ;; esac @@ -3852,6 +3854,10 @@ if test "x$USE_NGHTTP2" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES HTTP2" fi +if test "x$CURL_WITH_MULTI_SSL" = "x1"; then + SUPPORT_FEATURES="$SUPPORT_FEATURES MultiSSL" +fi + if test "x$OPENSSL_ENABLED" = "x1" -o "x$GNUTLS_ENABLED" = "x1" \ -o "x$NSS_ENABLED" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES HTTPS-proxy" |