util/dependencies.lua
changeset 7769 5594d0caa5a8
parent 7724 92f771147de8
child 7770 36bf9ed87ae1
equal deleted inserted replaced
7767:d6b96e42e8e6 7769:5594d0caa5a8
    61 
    61 
    62 	if not lxp then
    62 	if not lxp then
    63 		missingdep("luaexpat", {
    63 		missingdep("luaexpat", {
    64 				["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-expat0";
    64 				["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-expat0";
    65 				["luarocks"] = "luarocks install luaexpat";
    65 				["luarocks"] = "luarocks install luaexpat";
    66 				["Source"] = "http://www.keplerproject.org/luaexpat/";
    66 				["Source"] = "http://matthewwild.co.uk/projects/luaexpat/";
    67 			});
    67 			});
    68 		fatal = true;
    68 		fatal = true;
    69 	end
    69 	end
    70 
    70 
    71 	local socket = softreq "socket"
    71 	local socket = softreq "socket"
    93 
    93 
    94 	if not ssl then
    94 	if not ssl then
    95 		missingdep("LuaSec", {
    95 		missingdep("LuaSec", {
    96 				["Debian/Ubuntu"] = "http://prosody.im/download/start#debian_and_ubuntu";
    96 				["Debian/Ubuntu"] = "http://prosody.im/download/start#debian_and_ubuntu";
    97 				["luarocks"] = "luarocks install luasec";
    97 				["luarocks"] = "luarocks install luasec";
    98 				["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/";
    98 				["Source"] = "https://github.com/brunoos/luasec";
    99 			}, "SSL/TLS support will not be available");
    99 			}, "SSL/TLS support will not be available");
   100 	end
   100 	end
   101 
   101 
   102 	local encodings, err = softreq "util.encodings"
   102 	local encodings, err = softreq "util.encodings"
   103 	if not encodings then
   103 	if not encodings then