summaryrefslogtreecommitdiff
path: root/core/pkg/base.pkg
diff options
context:
space:
mode:
authorruki <[email protected]>2017-05-30 23:14:27 +0800
committerruki <[email protected]>2017-05-30 23:14:27 +0800
commitf01d5364141a3e2a965bd9d46e65a2bd851e27ec (patch)
tree6d56fb256655efa493021ee1a340368407c2c7c2 /core/pkg/base.pkg
parentaf5040e4c197ce261062b925743201358dc5e43c (diff)
add winreg.query and improve program
Diffstat (limited to 'core/pkg/base.pkg')
-rw-r--r--core/pkg/base.pkg/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pkg/base.pkg/xmake.lua b/core/pkg/base.pkg/xmake.lua
index db521e677..92d1ced6d 100644
--- a/core/pkg/base.pkg/xmake.lua
+++ b/core/pkg/base.pkg/xmake.lua
@@ -5,7 +5,7 @@ option("base")
set_category("package")
-- add links
- if is_os("windows") then add_links("ws2_32")
+ if is_os("windows") then add_links("ws2_32", "Advapi32")
elseif is_os("android") then add_links("m", "c")
else add_links("pthread", "dl", "m", "c") end