util.dependencies: Add awareness of luaunbound

This commit is contained in:
Kim Alvefur 2020-06-25 17:26:21 +02:00
parent b96535b6ae
commit 57253b7f87

View file

@ -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