Software / code / prosody
Comparison
util/dependencies.lua @ 450:e04c4052742c
Merge from waqas
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 27 Nov 2008 23:36:49 +0000 |
| parent | 449:c0a4a1e63d70 |
| child | 519:cccd610a0ef9 |
comparison
equal
deleted
inserted
replaced
| 444:77485b9b840c | 450:e04c4052742c |
|---|---|
| 41 missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available"); | 41 missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available"); |
| 42 end | 42 end |
| 43 end | 43 end |
| 44 | 44 |
| 45 | 45 |
| 46 local md5 = softreq "md5"; | |
| 47 | |
| 48 if not md5 then | |
| 49 missingdep("MD5", { ["luarocks"] = "luarocks install md5"; ["Source"] = "http://luaforge.net/frs/?group_id=155" }); | |
| 50 fatal = true; | |
| 51 end | |
| 52 | |
| 53 | |
| 54 if fatal then os.exit(1); end | 46 if fatal then os.exit(1); end |