Merge 0.9->0.10

This commit is contained in:
Kim Alvefur 2014-04-10 13:15:11 +02:00
commit ae8a4fb909
3 changed files with 21 additions and 3 deletions

View file

@ -49,6 +49,14 @@ package.preload["util.ztact"] = function ()
end;
function check_dependencies()
if _VERSION ~= "Lua 5.1" then
print "***********************************"
print("Unsupported Lua version: ".._VERSION);
print("Only Lua 5.1 is supported.");
print "***********************************"
return false;
end
local fatal;
local lxp = softreq "lxp"