mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
b18ab54899
commit
32b9b7ff47
1 changed files with 8 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue