cmake: fix feature and protocol lists for SecureTransport

NTLM was missing from the features list, and SMB/SMBS from
the protocols list in SecureTransport builds.

Follow-up to 76a9c3c4be #3619

Reported-by: Tal Regev
Bug: https://github.com/curl/curl/pull/13963#issuecomment-2178791390
Closes #14065
This commit is contained in:
Viktor Szakats 2024-06-30 23:56:55 +02:00
parent 582429ed47
commit 5942b7934d
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -1642,7 +1642,7 @@ if(NOT CURL_DISABLE_INSTALL)
# NTLM support requires crypto function adaptions from various SSL libs
if(NOT (CURL_DISABLE_NTLM) AND
(USE_OPENSSL OR USE_MBEDTLS OR USE_DARWINSSL OR USE_WIN32_CRYPTO OR USE_GNUTLS))
(USE_OPENSSL OR USE_MBEDTLS OR USE_SECTRANSP OR USE_WIN32_CRYPTO OR USE_GNUTLS))
set(use_curl_ntlm_core ON)
endif()