util.dependencies: Set global 'ssl' for compat with LuaSec 0.6 (fixes #749)

This commit is contained in:
Kim Alvefur 2016-09-23 16:09:46 +02:00
parent 1686ef5d53
commit c200735dba

View file

@ -99,6 +99,9 @@ function check_dependencies()
["luarocks"] = "luarocks install luasec";
["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/";
}, "SSL/TLS support will not be available");
elseif not _G.ssl then
_G.ssl = ssl;
_G.ssl.context = require "ssl.context";
end
local encodings, err = softreq "util.encodings"