diff options
author | Kim Alvefur <zash@zash.se> | 2014-04-10 13:16:54 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-04-10 13:16:54 +0200 |
commit | 87020b4789013b1d8ff33d7929d455392b1d9638 (patch) | |
tree | 521b9634144ac84ea608dbe47a15a0bcd1951695 /util/dependencies.lua | |
parent | 35ef31bd9b827f325f17180dfa77a66578df0983 (diff) | |
parent | ae8a4fb909a0cce10a12e9ced65e45ef2d1495fa (diff) | |
download | prosody-87020b4789013b1d8ff33d7929d455392b1d9638.tar.gz prosody-87020b4789013b1d8ff33d7929d455392b1d9638.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/dependencies.lua')
-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 9d80d241..ea19d9a8 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" |