aboutsummaryrefslogtreecommitdiff
path: root/zencore/xmake.lua
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-11-15 15:13:34 +0100
committerMartin Ridgers <[email protected]>2021-11-15 15:13:34 +0100
commitc3351f38e578129985eb393432ad56c59df5bd2a (patch)
tree4238b0c747cde6ee985a63fece75f72dcf95dae7 /zencore/xmake.lua
parentDeleted some debug code submitted by accident (diff)
downloadzen-c3351f38e578129985eb393432ad56c59df5bd2a.tar.xz
zen-c3351f38e578129985eb393432ad56c59df5bd2a.zip
libcrypto links again libdl so the latter also needs careful handling in xmake
Diffstat (limited to 'zencore/xmake.lua')
-rw-r--r--zencore/xmake.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/zencore/xmake.lua b/zencore/xmake.lua
index 5923b99c3..eade07700 100644
--- a/zencore/xmake.lua
+++ b/zencore/xmake.lua
@@ -39,5 +39,6 @@ target('zencore')
-- xmake to use the correct order, and "syslinks" is used to force the
-- arguments to the end of the line (otherwise they can appear before
-- curl and cause more errors).
- add_syslinks("ssl", "crypto")
+ add_syslinks("crypto")
+ add_syslinks("dl")
end