plugins/mod_posix.lua

changeset 1579
95698f021c5d
parent 1522
569d58d21612
child 1680
f3d241915429
child 1691
e9b589dae393
equal deleted inserted replaced
1578:5bd8b3bdbfbc 1579:95698f021c5d
5 -- This project is MIT/X11 licensed. Please see the 5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information. 6 -- COPYING file in the source package for more information.
7 -- 7 --
8 8
9 9
10 local want_pposix_version = "0.3.0"; 10 local want_pposix_version = "0.3.1";
11 11
12 local pposix = assert(require "util.pposix"); 12 local pposix = assert(require "util.pposix");
13 if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end 13 if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end
14 14
15 local signal = select(2, pcall(require, "util.signal")); 15 local signal = select(2, pcall(require, "util.signal"));

mercurial