mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dependencies: Add check and info about lua-bitops (for mod_websockets)
This commit is contained in:
parent
1c652e0883
commit
00e5c2d7d3
1 changed files with 11 additions and 0 deletions
|
@ -99,6 +99,16 @@ local function check_dependencies()
|
||||||
}, "SSL/TLS support will not be available");
|
}, "SSL/TLS support will not be available");
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local bit = _G.bit32 or softreq"bit";
|
||||||
|
|
||||||
|
if not bit then
|
||||||
|
missingdep("lua-bitops", {
|
||||||
|
["Debian/Ubuntu"] = "sudo apt-get install lua-bitop";
|
||||||
|
["luarocks"] = "luarocks install luabitop";
|
||||||
|
["Source"] = "http://bitop.luajit.org/";
|
||||||
|
}, "WebSocket support will not be available");
|
||||||
|
end
|
||||||
|
|
||||||
local encodings, err = softreq "util.encodings"
|
local encodings, err = softreq "util.encodings"
|
||||||
if not encodings then
|
if not encodings then
|
||||||
if err:match("module '[^']*' not found") then
|
if err:match("module '[^']*' not found") then
|
||||||
|
@ -132,6 +142,7 @@ local function check_dependencies()
|
||||||
end
|
end
|
||||||
fatal = true;
|
fatal = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
return not fatal;
|
return not fatal;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue