From: Yonggang Luo Date: Thu, 14 Jul 2016 18:16:18 +0000 (+0800) Subject: cmake: Fix for schannel support X-Git-Tag: curl-7_50_1~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2bbed9c4f0d2c192cd3b3b61fd6a1c21911936c3;p=thirdparty%2Fcurl.git cmake: Fix for schannel support The check_library_exists_concat do not check crypt32 library properly. So include it directly. Bug: https://github.com/curl/curl/pull/917 Reported-by: Yonggang Luo Bug: https://github.com/curl/curl/issues/935 Reported-by: Alain Danteny --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 58b145170c..7f7c4d6da7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -570,7 +570,7 @@ if(NOT UNIX) if(HAVE_SCHANNEL_H) set(USE_SCHANNEL ON) set(SSL_ENABLED ON) - check_library_exists_concat("crypt32" CertFreeCertificateContext HAVE_LIBCRYPT32) + set(CURL_LIBS ${CURL_LIBS} "crypt32") endif() endif() endif()