Merge
[prosody.git] / util / dependencies.lua
1 -- Prosody IM v0.4
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10 local fatal;
11
12 local function softreq(...) local ok, lib =  pcall(require, ...); if ok then return lib; else return nil, lib; end end
13
14 local function missingdep(name, sources, msg)
15         print("");
16         print("**************************");
17         print("Prosody was unable to find "..tostring(name));
18         print("This package can be obtained in the following ways:");
19         print("");
20         for k,v in pairs(sources) do
21                 print("", k, v);
22         end
23         print("");
24         print(msg or (name.." is required for Prosody to run, so we will now exit."));
25         print("More help can be found on our website, at http://prosody.im/doc/depends");
26         print("**************************");
27         print("");
28 end
29
30 local lxp = softreq "lxp"
31
32 if not lxp then
33         missingdep("luaexpat", { ["Ubuntu 8.04 (Hardy)"] = "sudo apt-get install liblua5.1-expat0"; ["luarocks"] = "luarocks install luaexpat"; });
34         fatal = true;
35 end
36
37 local socket = softreq "socket"
38
39 if not socket then
40         missingdep("luasocket", { ["Ubuntu 8.04 (Hardy)"] = "sudo apt-get install liblua5.1-socket2"; ["luarocks"] = "luarocks install luasocket"; });
41         fatal = true;
42 end
43         
44 local ssl = softreq "ssl"
45
46 if not ssl then
47         if config.get("*", "core", "run_without_ssl") then
48                 log("warn", "Running without SSL support because run_without_ssl is defined in the config");
49         else
50                 missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available");
51         end
52 end
53
54 local encodings, err = softreq "util.encodings"
55 if not encodings then
56         if err:match("not found") then
57                 missingdep("util.encodings", { ["Windows"] = "Make sure you have encodings.dll from the Prosody distribution in util/";
58                                         ["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/encodings.so";
59                                 });
60         else
61                 print "***********************************"
62                 print("util/encodings couldn't be loaded. Check that you have a recent version of libidn");
63                 print ""
64                 print("The full error was:");
65                 print(err)
66                 print "***********************************"
67         end
68         fatal = true;
69 end
70
71 local hashes, err = softreq "util.hashes"
72 if not hashes then
73         if err:match("not found") then
74                 missingdep("util.hashes", { ["Windows"] = "Make sure you have hashes.dll from the Prosody distribution in util/";
75                                         ["GNU/Linux"] = "Run './configure' and 'make' in the Prosody source directory to build util/hashes.so";
76                                 });
77         else
78                 print "***********************************"
79                 print("util/hashes couldn't be loaded. Check that you have a recent version of OpenSSL (libcrypto in particular)");
80                 print ""
81                 print("The full error was:");
82                 print(err)
83                 print "***********************************"
84         end
85         fatal = true;
86 end
87
88 if fatal then os.exit(1); end