aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-07-25 13:16:31 +0200
committerKim Alvefur <zash@zash.se>2017-07-25 13:16:31 +0200
commitbe92d92ad720c90767daf5c14c2221b6c6ab288b (patch)
treecef0987551653283252972f6e6c1264555d5786f
parent6f2c8d8664cd341b7845d726be6a1cd0e0305ef8 (diff)
downloadprosody-be92d92ad720c90767daf5c14c2221b6c6ab288b.tar.gz
prosody-be92d92ad720c90767daf5c14c2221b6c6ab288b.zip
util.dependencies: Add compatibility code for LuaSocket no longer exporting as a global
-rw-r--r--util/dependencies.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index 491bfd9b..a259c263 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -79,6 +79,9 @@ function check_dependencies()
["Source"] = "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/";
});
fatal = true;
+ elseif not _G.socket then
+ -- COMPAT Code expecting LuaSocket to export as a global
+ _G.socket = socket;
end
local lfs, err = softreq "lfs"