aboutsummaryrefslogtreecommitdiff
path: root/ports/xeus/Fix-static-build.patch
diff options
context:
space:
mode:
authorMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2020-11-05 20:42:29 +0000
committerGitHub <noreply@github.com>2020-11-05 12:42:29 -0800
commit34283f5d8a78a814e668c44e10f02bef1c7ab674 (patch)
tree188811081948a27eb116e11efb87f5e15e04678b /ports/xeus/Fix-static-build.patch
parent6a020192af829a58d8e63627e69140bac4b512ba (diff)
downloadvcpkg-34283f5d8a78a814e668c44e10f02bef1c7ab674.tar.gz
vcpkg-34283f5d8a78a814e668c44e10f02bef1c7ab674.zip
[xeus] remove openssl static build patch as it is no longer needed (#14387)
Diffstat (limited to 'ports/xeus/Fix-static-build.patch')
-rw-r--r--ports/xeus/Fix-static-build.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/ports/xeus/Fix-static-build.patch b/ports/xeus/Fix-static-build.patch
deleted file mode 100644
index 4caf0138f..000000000
--- a/ports/xeus/Fix-static-build.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index d02b5d6..6484131 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -244,7 +244,10 @@ macro(xeus_create_target target_name linkage output_name)
- PUBLIC xtl
- )
-
-- target_link_libraries(${target_name} PUBLIC OpenSSL::Crypto)
-+ if (MSVC)
-+ target_link_libraries(OpenSSL::Crypto INTERFACE crypt32)
-+ endif ()
-+ target_link_libraries(${target_name} PUBLIC OpenSSL::Crypto)
-
- if (NOT MSVC)
- if (APPLE)