util.dependencies: Check for Lua 5.1. We don't currently support any other versions. LuaJIT identifies as 5.1.

This commit is contained in:
Waqas Hussain 2014-04-09 14:01:02 -04:00
parent b18ab54899
commit 32b9b7ff47

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"