mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dependencies: Add awareness of luaunbound
This commit is contained in:
parent
b96535b6ae
commit
57253b7f87
1 changed files with 8 additions and 0 deletions
|
@ -98,6 +98,14 @@ local function check_dependencies()
|
|||
}, "WebSocket support will not be available", err);
|
||||
end
|
||||
|
||||
local unbound, err = softreq"lunbound";
|
||||
if not unbound then
|
||||
missingdep("lua-unbound", {
|
||||
{ "luarocks", "luarocks install luaunbound" };
|
||||
{ "Source", "https://www.zash.se/luaunbound.html" };
|
||||
}, "Old DNS resolver library will be used", err);
|
||||
end
|
||||
|
||||
local encodings, err = softreq "util.encodings"
|
||||
if not encodings then
|
||||
if err:match("module '[^']*' not found") then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue