diff options
author | Kim Alvefur <zash@zash.se> | 2017-07-25 13:25:49 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-07-25 13:25:49 +0200 |
commit | 0a64a2f9a8d3765a7f7126dc3d295b831fb1a8c7 (patch) | |
tree | 03e17d92afffaf8002b7159dfb041b1bef93f437 | |
parent | be92d92ad720c90767daf5c14c2221b6c6ab288b (diff) | |
download | prosody-0a64a2f9a8d3765a7f7126dc3d295b831fb1a8c7.tar.gz prosody-0a64a2f9a8d3765a7f7126dc3d295b831fb1a8c7.zip |
util.dependencies: Add comment about LuaSec compat
-rw-r--r-- | util/dependencies.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index a259c263..7ec56022 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -103,6 +103,7 @@ function check_dependencies() ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/"; }, "SSL/TLS support will not be available"); elseif not _G.ssl then + -- COMPAT Code expecting LuaSec to export as a global (see #749) _G.ssl = ssl; _G.ssl.context = require "ssl.context"; _G.ssl.x509 = softreq "ssl.x509"; |