cm disable if not supported, show warn

This commit is contained in:
Viktor Szakats 2026-07-30 00:10:30 +02:00
parent ad9b069230
commit afce1ecc4e
No known key found for this signature in database

View file

@ -1106,6 +1106,11 @@ if(USE_ECH)
endif()
endif()
if(NOT CURL_DISABLE_HTTPSIG AND (NOT USE_OPENSSL AND NOT USE_WOLFSSL))
message(WARNING "HTTPSIG requires OpenSSL or wolfSSL. HTTPSIG support disabled.")
set(CURL_DISABLE_HTTPSIG ON)
endif()
option(USE_SSLS_EXPORT "Enable SSL session import/export (experimental)" OFF)
if(USE_SSLS_EXPORT)
if(_ssl_enabled)