From: Daniel Stenberg Date: Wed, 15 Jun 2022 21:33:00 +0000 (+0200) Subject: configure: warn about rustls being experimental X-Git-Tag: curl-7_84_0~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c828dc72e52a245f48e5b005e895f5ff4d35b002;p=thirdparty%2Fcurl.git configure: warn about rustls being experimental Right now a dozen test cases are disabled because they don't work with rustls. Closes #9019 --- diff --git a/configure.ac b/configure.ac index 79ff336fe2..b0245b99a6 100644 --- a/configure.ac +++ b/configure.ac @@ -264,6 +264,7 @@ AS_HELP_STRING([--with-rustls=PATH],[where to look for rustls, PATH points to th OPT_RUSTLS=$withval if test X"$withval" != Xno; then test -z "TLSCHOICE" || TLSCHOICE="${TLSCHOICE:+$TLSCHOICE, }rustls") + experimental="$experimental rustls" fi OPT_NSS_AWARE=no diff --git a/docs/EXPERIMENTAL.md b/docs/EXPERIMENTAL.md index 38bc620374..42b6e2142b 100644 --- a/docs/EXPERIMENTAL.md +++ b/docs/EXPERIMENTAL.md @@ -21,3 +21,4 @@ Experimental support in curl means: - The Hyper HTTP backend - HTTP/3 support and options - `CURLSSLOPT_NATIVE_CA` (No configure option, feature built in when supported) + - The rustls backend