From 528c05a9876d77c9752709db3d24bcf31ebf57eb Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 16 Jun 2026 20:26:41 +0200 Subject: [PATCH] configure: tidy up `OPT_APPLE_SECTRUST` initialization The OS detection variable is not initialized at the time of assigning its value to `OPT_APPLE_SECTRUST`. Replace the current empty value with `no`. This keeps existing, desired, behavior. Closes #22054 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d933165068..1752bb10a2 100644 --- a/configure.ac +++ b/configure.ac @@ -306,7 +306,7 @@ AS_HELP_STRING([--with-rustls=PATH],[where to look for Rustls, PATH points to th fi ]) -OPT_APPLE_SECTRUST=$curl_cv_apple +OPT_APPLE_SECTRUST=no AC_ARG_WITH(apple-sectrust, AS_HELP_STRING([--with-apple-sectrust],[enable Apple OS native certificate verification]),[ OPT_APPLE_SECTRUST=$withval