Fresh pull from upstream (stable) package feed
[librecmc/package-feed.git] / lang / luaposix / patches / 102-disable-compat-deprecated.diff
1 diff --git a/lib/posix.lua.in b/lib/posix.lua.in
2 index 17ef39a..a248d9b 100644
3 --- a/lib/posix.lua.in
4 +++ b/lib/posix.lua.in
5 @@ -35,15 +35,6 @@ for _, sub in ipairs {
6    end
7  end
8  
9 -
10 --- Inject deprecated APIs (overwriting submodules) for backwards compatibility.
11 -for k, v in pairs (require "posix.deprecated") do
12 -  M[k] = v
13 -end
14 -for k, v in pairs (require "posix.compat") do
15 -  M[k] = v
16 -end
17 -
18  M.version = "posix for " .. _VERSION .. " / @PACKAGE_STRING@"
19  
20