mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dependencies: Normalize whitespace
This commit is contained in:
parent
b661ee3aca
commit
87f325ecd7
1 changed files with 13 additions and 11 deletions
|
@ -82,10 +82,10 @@ local function check_dependencies()
|
||||||
local lfs, err = softreq "lfs"
|
local lfs, err = softreq "lfs"
|
||||||
if not lfs then
|
if not lfs then
|
||||||
missingdep("luafilesystem", {
|
missingdep("luafilesystem", {
|
||||||
["luarocks"] = "luarocks install luafilesystem";
|
["luarocks"] = "luarocks install luafilesystem";
|
||||||
["Debian/Ubuntu"] = "sudo apt-get install lua-filesystem";
|
["Debian/Ubuntu"] = "sudo apt-get install lua-filesystem";
|
||||||
["Source"] = "http://www.keplerproject.org/luafilesystem/";
|
["Source"] = "http://www.keplerproject.org/luafilesystem/";
|
||||||
});
|
});
|
||||||
fatal = true;
|
fatal = true;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -112,9 +112,10 @@ local function check_dependencies()
|
||||||
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
|
||||||
missingdep("util.encodings", { ["Windows"] = "Make sure you have encodings.dll from the Prosody distribution in util/";
|
missingdep("util.encodings", {
|
||||||
["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/encodings.so";
|
["Windows"] = "Make sure you have encodings.dll from the Prosody distribution in util/";
|
||||||
});
|
["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/encodings.so";
|
||||||
|
});
|
||||||
else
|
else
|
||||||
print "***********************************"
|
print "***********************************"
|
||||||
print("util/encodings couldn't be loaded. Check that you have a recent version of libidn");
|
print("util/encodings couldn't be loaded. Check that you have a recent version of libidn");
|
||||||
|
@ -129,10 +130,11 @@ local function check_dependencies()
|
||||||
local hashes, err = softreq "util.hashes"
|
local hashes, err = softreq "util.hashes"
|
||||||
if not hashes then
|
if not hashes then
|
||||||
if err:match("module '[^']*' not found") then
|
if err:match("module '[^']*' not found") then
|
||||||
missingdep("util.hashes", { ["Windows"] = "Make sure you have hashes.dll from the Prosody distribution in util/";
|
missingdep("util.hashes", {
|
||||||
["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/hashes.so";
|
["Windows"] = "Make sure you have hashes.dll from the Prosody distribution in util/";
|
||||||
});
|
["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/hashes.so";
|
||||||
else
|
});
|
||||||
|
else
|
||||||
print "***********************************"
|
print "***********************************"
|
||||||
print("util/hashes couldn't be loaded. Check that you have a recent version of OpenSSL (libcrypto in particular)");
|
print("util/hashes couldn't be loaded. Check that you have a recent version of OpenSSL (libcrypto in particular)");
|
||||||
print ""
|
print ""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue