util.dependencies: Add compat code for normalization of socket constructors

Old LuaSocket had only tcp() which was IPv4-only. LuaSocket ~3.0 adds a
tcp6() that creates a IPv6 socket. Some version moves tcp() to tcp4()
and adds an IP-version-agnostic tcp() constructor.
This commit is contained in:
Kim Alvefur 2018-10-12 16:21:16 +02:00
parent 06cdd9edcd
commit 284152ba25

View file

@ -77,6 +77,10 @@ local function check_dependencies()
["Source"] = "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/";
});
fatal = true;
elseif not socket.tcp4 then
-- COMPAT LuaSocket before being IP-version agnostic
socket.tcp4 = socket.tcp;
socket.udp4 = socket.udp;
end
local lfs, err = softreq "lfs"