diff options
author | Waqas Hussain <waqas20@gmail.com> | 2014-04-09 14:01:02 -0400 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2014-04-09 14:01:02 -0400 |
commit | 1f5cda08499e8e7158436ee2b8b135a1a8dd04db (patch) | |
tree | e2711f874b94ef0c247d7d56a7fee8d4b34bb951 /util | |
parent | f3e3081f4f6f759f10b89bfcde9711864acd2d8f (diff) | |
download | prosody-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.
Diffstat (limited to 'util')
-rw-r--r-- | util/dependencies.lua | 8 |
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" |