mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dependencies: Discourage Lua 5.1
Search for 'Lua 5.1' for reasons.
This commit is contained in:
parent
74e1de54fd
commit
eb2c2d4597
1 changed files with 2 additions and 0 deletions
|
@ -155,6 +155,8 @@ end
|
|||
local function log_warnings()
|
||||
if _VERSION > "Lua 5.4" then
|
||||
prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION);
|
||||
elseif _VERSION < "Lua 5.2" then
|
||||
prosody.log("warn", "%s has sevral issues and support is being phased out, consider upgrading", _VERSION);
|
||||
end
|
||||
local ssl = softreq"ssl";
|
||||
if ssl then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue