aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2024-12-03 09:41:41 +0100
committerGitHub Enterprise <[email protected]>2024-12-03 09:41:41 +0100
commit8284e470d0c3abd642efbb3eff1f012b4f7282c2 (patch)
tree86978ae0d16264d9b7b403ec1b32cb574e82a1f3 /xmake.lua
parentODR fix (diff)
downloadzen-8284e470d0c3abd642efbb3eff1f012b4f7282c2.tar.xz
zen-8284e470d0c3abd642efbb3eff1f012b4f7282c2.zip
don't force openssl to version 3.0.8 (#252)
should fix build issues caused by curl pulling in a different version
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/xmake.lua b/xmake.lua
index b1e0f809d..fc896d3e8 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -26,9 +26,7 @@ add_requires(
set_policy("build.ccache", false)
-if is_plat("linux") then
- add_requires("vcpkg::openssl 3.0.8")
-elseif is_plat("windows") then
+if is_plat("windows") then
add_defines("ZEN_USE_OPENSSL=0")
else
add_requires("vcpkg::openssl")