Comparison

util/dependencies.lua @ 449:c0a4a1e63d70

Completely switched to new hashes library from the old md5 library
author Waqas Hussain <waqas20@gmail.com>
date Fri, 28 Nov 2008 01:16:26 +0500
parent 413:4b61529d0884
child 519:cccd610a0ef9
comparison
equal deleted inserted replaced
448:2623519b25b0 449:c0a4a1e63d70
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