summaryrefslogtreecommitdiff
path: root/core/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-23 23:19:22 +0800
committerruki <[email protected]>2025-11-23 23:20:42 +0800
commite301ec49b76d70c06817227a2f386b8151e4a898 (patch)
tree0a74399bc9b46cd3d2f239aa3f842c969df7ee4f /core/xmake.lua
parent218d442b6fae448a9a2f9cbdd57b8df1db295a14 (diff)
disable curses for solaris
Diffstat (limited to 'core/xmake.lua')
-rw-r--r--core/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/xmake.lua b/core/xmake.lua
index 28ac10af4..24f5b9304 100644
--- a/core/xmake.lua
+++ b/core/xmake.lua
@@ -103,7 +103,7 @@ option("curses")
end
end)
after_check(function (option)
- if option:dep("cosmocc"):enabled() then
+ if option:dep("cosmocc"):enabled() or is_plat("solaris") then
option:enable(false)
end
end)