mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dependencies: Check for bitop library same way as net.websocket.frames (fixes #1594)
This commit is contained in:
parent
1a0df81387
commit
c91cc915b6
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ local function check_dependencies()
|
|||
}, "SSL/TLS support will not be available");
|
||||
end
|
||||
|
||||
local bit = _G.bit32 or softreq"bit";
|
||||
local bit = softreq"bit" or softreq"bit32";
|
||||
|
||||
if not bit then
|
||||
missingdep("lua-bitops", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue