From 2bbed9c4f0d2c192cd3b3b61fd6a1c21911936c3 Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Fri, 15 Jul 2016 02:16:18 +0800 Subject: 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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 58b145170..7f7c4d6da 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() -- cgit v1.2.3