Comparison

plugins/mod_posix.lua @ 2455:0b3184f3c9e4

util.pposix, mod_posix, prosodyctl: Bump pposix version to 0.3.3 for mkdir
author Matthew Wild <mwild1@gmail.com>
date Tue, 12 Jan 2010 15:35:36 +0000
parent 2445:9806fac994f8
child 2456:260601859c9f
comparison
equal deleted inserted replaced
2454:e4818c49192d 2455:0b3184f3c9e4
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.2"; 10 local want_pposix_version = "0.3.3";
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"));