aboutsummaryrefslogtreecommitdiffstats
path: root/util/dependencies.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-10-26 19:09:02 +0100
committerMatthew Wild <mwild1@gmail.com>2018-10-26 19:09:02 +0100
commit9fdfa590d2d910b0104e4e37d4c7403cbc4d4151 (patch)
treefa578ae1d889ed23dfd7cd5dacba86ca7c115cf3 /util/dependencies.lua
parent69900696779c89084fe7e6a5be365b3453222462 (diff)
downloadprosody-9fdfa590d2d910b0104e4e37d4c7403cbc4d4151.tar.gz
prosody-9fdfa590d2d910b0104e4e37d4c7403cbc4d4151.zip
util.dependencies: Remove ztact compatability warning
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r--util/dependencies.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index 8dc867e8..7c7b938e 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -33,19 +33,6 @@ local function missingdep(name, sources, msg)
print("");
end
--- COMPAT w/pre-0.8 Debian: The Debian config file used to use
--- util.ztact, which has been removed from Prosody in 0.8. This
--- is to log an error for people who still use it, so they can
--- update their configs.
-package.preload["util.ztact"] = function ()
- if not package.loaded["core.loggingmanager"] then
- error("util.ztact has been removed from Prosody and you need to fix your config "
- .."file. More information can be found at https://prosody.im/doc/packagers#ztact", 0);
- else
- error("module 'util.ztact' has been deprecated in Prosody 0.8.");
- end
-end;
-
local function check_dependencies()
if _VERSION < "Lua 5.1" then
print "***********************************"