aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2014-04-09 14:01:02 -0400
committerWaqas Hussain <waqas20@gmail.com>2014-04-09 14:01:02 -0400
commit1f5cda08499e8e7158436ee2b8b135a1a8dd04db (patch)
treee2711f874b94ef0c247d7d56a7fee8d4b34bb951
parentf3e3081f4f6f759f10b89bfcde9711864acd2d8f (diff)
downloadprosody-1f5cda08499e8e7158436ee2b8b135a1a8dd04db.tar.gz
prosody-1f5cda08499e8e7158436ee2b8b135a1a8dd04db.zip
util.dependencies: Check for Lua 5.1. We don't currently support any other versions. LuaJIT identifies as 5.1.
-rw-r--r--util/dependencies.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index e55b2405..4d50cf63 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -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"