autotools: capitalize 'Rustls' in the log output

To match the rest of the codebase.

Follow-up to 548d8a8421
Cherry-picked from #18660
Closes #18671
This commit is contained in:
Viktor Szakats 2025-09-22 02:03:08 +02:00
parent aa9fa4d68e
commit 7f5ff8f276
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 4 additions and 4 deletions

View file

@ -272,8 +272,8 @@ AC_ARG_WITH(rustls,dnl
AS_HELP_STRING([--with-rustls=PATH],[where to look for Rustls, PATH points to the installation root]),[
OPT_RUSTLS=$withval
if test X"$withval" != Xno; then
TLSCHOICE="${TLSCHOICE:+$TLSCHOICE, }rustls"
experimental="$experimental rustls"
TLSCHOICE="${TLSCHOICE:+$TLSCHOICE, }Rustls"
experimental="$experimental Rustls"
fi
])

View file

@ -132,7 +132,7 @@ if test "x$OPT_RUSTLS" != xno; then
dnl don't need any.
LIBS="$SSL_LIBS $LIBS"
link_pkgconfig=1
ssl_msg="rustls"
ssl_msg="Rustls"
AC_DEFINE(USE_RUSTLS, 1, [if Rustls is enabled])
USE_RUSTLS="yes"
RUSTLS_ENABLED=1
@ -176,7 +176,7 @@ if test "x$OPT_RUSTLS" != xno; then
AC_DEFINE(USE_RUSTLS, 1, [if Rustls is enabled])
RUSTLS_ENABLED=1
USE_RUSTLS="yes"
ssl_msg="rustls"
ssl_msg="Rustls"
test rustls != "$DEFAULT_SSL_BACKEND" || VALID_DEFAULT_SSL_BACKEND=yes
],
AC_MSG_ERROR([--with-rustls was specified but could not find compatible Rustls.]),