Revert "[TEST] httpsig: enable in all CI jobs"

This reverts commit 56e31ef20f.
This commit is contained in:
Viktor Szakats 2026-07-30 09:25:12 +02:00
parent 197f0e9346
commit 666f30614a
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -455,7 +455,7 @@ option(CURL_DISABLE_HTTP "Disable HTTP" OFF)
mark_as_advanced(CURL_DISABLE_HTTP)
option(CURL_DISABLE_HTTP_AUTH "Disable all HTTP authentication methods" OFF)
mark_as_advanced(CURL_DISABLE_HTTP_AUTH)
option(CURL_DISABLE_HTTPSIG "Disable HTTP Message Signatures (RFC 9421) (experimental)" OFF)
option(CURL_DISABLE_HTTPSIG "Disable HTTP Message Signatures (RFC 9421) (experimental)" ON)
mark_as_advanced(CURL_DISABLE_HTTPSIG)
option(CURL_DISABLE_IMAP "Disable IMAP" OFF)
mark_as_advanced(CURL_DISABLE_IMAP)

View file

@ -4606,8 +4606,8 @@ AS_HELP_STRING([--disable-httpsig],[Disable HTTP Message Signatures support (exp
want_httpsig="yes"
;;
esac ],
AC_MSG_RESULT(yes)
want_httpsig="yes"
AC_MSG_RESULT(no)
want_httpsig="no"
)
if test "$want_httpsig" = "yes" && test "$OPENSSL_ENABLED" != "1" && test "$WOLFSSL_ENABLED" != "1"; then