mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 02:11:39 +08:00
[curl] Don't try to include OpenSSL headers when OpenSSL backends aren't selected. (#24766)
Fixes regression introduced in https://github.com/microsoft/vcpkg/pull/24348
This commit is contained in:
parent
68c6835c82
commit
0a6002ef25
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "curl",
|
||||
"version": "7.83.1",
|
||||
"port-version": 1,
|
||||
"port-version": 2,
|
||||
"description": "A library for transferring data with URLs",
|
||||
"homepage": "https://curl.se/",
|
||||
"license": null,
|
||||
|
@ -32,7 +32,7 @@ diff -ur a/lib/curl_ntlm_core.h b/lib/curl_ntlm_core.h
|
||||
# include <wolfssl/options.h>
|
||||
-#endif
|
||||
+# include <wolfssl/openssl/ssl.h>
|
||||
+#else
|
||||
+#elif defined(USE_OPENSSL)
|
||||
# include <openssl/ssl.h>
|
||||
#endif
|
||||
|
||||
|
@ -1746,7 +1746,7 @@
|
||||
},
|
||||
"curl": {
|
||||
"baseline": "7.83.1",
|
||||
"port-version": 1
|
||||
"port-version": 2
|
||||
},
|
||||
"curlpp": {
|
||||
"baseline": "2018-06-15",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "09dee7c9ae276d954fc8017b6a81002e43f81bb0",
|
||||
"version": "7.83.1",
|
||||
"port-version": 2
|
||||
},
|
||||
{
|
||||
"git-tree": "69e1aaae731455f5ed18b7eea4da75ee10bd073a",
|
||||
"version": "7.83.1",
|
||||
|
Loading…
Reference in New Issue
Block a user