-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIN][VS2015] Missing Crypt32.lib in Linker Dependencies #1147
Comments
this bug similar to #935 |
The #935 problem was for the schannel backend though and was fixed in: 2bbed9c4f0d2c192c. You probably need something similar. But really, building static means you need to figure out and provide all the dependencies yourself and you can't expect our build scripts to always have that right. It's a cat and mouse game that we always will be behind in. |
@bagder Yes, you are right. But, curl.exe can use libcrypto.lib and libssl.lib (OpenSSL 1.1.0 in static form) on Windows platforms also. So, it should to add Crypt32.lib in its dependencies. Am I right too? My proposition: if curl\lubcurl compiled with OpenSSL then cmake should add Crypt32.lib in the dependency list in any case (ether dynamic OpenSSL or static). Then Visual C++ linker has to remove Crypt32.lib reference if it not is used in the assembly. P.S.: Sorry, I do not know the CMakeLists.txt format and I can't to do this work alone. |
I add pull request #1149, please review it. |
I did this
I use CMAKE for generate build files for
libcurl
in static form.With such settings:
I expected the following
But OpenSSL 1.1.0 in CAPI engine begins to use the Cryptography functions from Wincrypt.h, so Crypt32.lib is required. But in such configuration CMake does not add the Crypt32.lib in
CURL_LIBS
value.As result I received the many linker errors with 'unresolved external CertFreeCertificateContext in file ...'
I am expecting the correct linking, but I don't know how to add the Crypt32.lib in dependencies.
curl/libcurl version
curl/libcurl 7.51.0-DEV
operating system
Windows 10 x64
Visual Studio 2015
The text was updated successfully, but these errors were encountered: