aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2025-10-26 19:39:53 +0100
committerStefan Boberg <[email protected]>2025-10-26 19:39:53 +0100
commit60850738387deae45db61d7e549a026c9021a9a8 (patch)
treeba6454dae5275820c38f9490c1acea145aec2b2a /xmake.lua
parentremove vcpkg from github actions (diff)
downloadzen-60850738387deae45db61d7e549a026c9021a9a8.tar.xz
zen-60850738387deae45db61d7e549a026c9021a9a8.zip
curl default to mbedtls in package definition
also bumped Linux sentry-native to 0.7.6 to match other targets
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake.lua b/xmake.lua
index 709e9a3c3..bdaa96d77 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -11,7 +11,7 @@ add_requires("http_parser", {system = false})
add_requires("mimalloc", {system = false})
add_requires("eastl", {system = false})
add_requires("zlib", {system = false})
-add_requires("libcurl", {alias="curl", system = false, configs = {mbedtls = true}})
+add_requires("libcurl", {system = false})
add_defines("EASTL_STD_ITERATOR_CATEGORY_ENABLED", "EASTL_DEPRECATIONS_FOR_2024_APRIL=EA_DISABLED")
@@ -41,7 +41,7 @@ end
if has_config("zensentry") then
if is_plat("linux") then
- add_requires("sentry-native 0.5.4")
+ add_requires("sentry-native 0.7.6")
else
add_requires("sentry-native 0.7.6") -- matches vcpkg version (2024-06-15)
end