mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.dependencies: Avoid missing bitop false positive on Lua 5.4
This commit is contained in:
parent
f10cf81e37
commit
2848e38b7e
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ 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";
|
local bit = softreq"util.bitcompat";
|
||||||
|
|
||||||
if not bit then
|
if not bit then
|
||||||
missingdep("lua-bitops", {
|
missingdep("lua-bitops", {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue