From c828dc72e52a245f48e5b005e895f5ff4d35b002 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 15 Jun 2022 23:33:00 +0200 Subject: [PATCH] configure: warn about rustls being experimental Right now a dozen test cases are disabled because they don't work with rustls. Closes #9019 --- configure.ac | 1 + docs/EXPERIMENTAL.md | 1 + 2 files changed, 2 insertions(+) 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 -- 2.47.3