]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
configure.ac: Disable metalink if mbedTLS is specified
authorSteve Holme <steve_holme@hotmail.com>
Mon, 2 Mar 2020 01:51:49 +0000 (01:51 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Tue, 3 Mar 2020 00:37:24 +0000 (00:37 +0000)
Follow up to cdcc9df1 and #5006. Even though I mentioned mbedTLS as
being one of the backends that metalink needs to be disabled for, I
seem to have included it in the list of allowed SSL/TLS backends in
comnfigure.ac :(

Closes #5013

configure.ac

index d08553bb7a6bc5e47bd1aa2c10b1917c34248831..e7ad63925ecff7ffae616bc0276febe205b78746 100755 (executable)
@@ -2771,8 +2771,8 @@ if test X"$OPT_LIBMETALINK" != Xno; then
       want_metalink="no"
     ])
     if test "x$OPENSSL_ENABLED" != "x1" -a "x$USE_WINDOWS_SSPI" != "x1" \
-        -a "x$GNUTLS_ENABLED" != "x1" -a "x$MBEDTLS_ENABLED" != "x1" \
-        -a "x$NSS_ENABLED" != "x1" -a "x$SECURETRANSPORT_ENABLED" != "x1"; then
+        -a "x$GNUTLS_ENABLED" != "x1" -a "x$NSS_ENABLED" != "x1" \
+        -a "x$SECURETRANSPORT_ENABLED" != "x1"; then
       AC_MSG_WARN([metalink support requires a compatible SSL/TLS backend])
       want_metalink="no"
     fi