From: Viktor Szakats Date: Tue, 16 Jun 2026 18:26:41 +0000 (+0200) Subject: configure: tidy up `OPT_APPLE_SECTRUST` initialization X-Git-Tag: rc-8_21_0-3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=528c05a9876d77c9752709db3d24bcf31ebf57eb;p=thirdparty%2Fcurl.git 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 --- 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