# HG changeset patch # User Kim Alvefur # Date 1479460862 -3600 # Node ID 92f771147de8a138f879cd9c455851f9534d5986 # Parent 7166750fb96398f54ebf783d2d733c62ed19d1c7 util.dependencies: Disable warning about Lua 5.2 (but still warn about 5.3) diff -r 7166750fb963 -r 92f771147de8 util/dependencies.lua --- a/util/dependencies.lua Fri Nov 18 10:19:34 2016 +0100 +++ b/util/dependencies.lua Fri Nov 18 10:21:02 2016 +0100 @@ -136,7 +136,7 @@ end local function log_warnings() - if _VERSION > "Lua 5.1" then + if _VERSION > "Lua 5.2" then prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION); end local ssl = softreq"ssl";