Software /
code /
prosody
Comparison
plugins/mod_posix.lua @ 8015:ecb110f45c92
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 28 Mar 2017 20:14:35 +0200 |
parent | 7999:980606856882 |
parent | 8012:e898c8fda986 |
child | 8121:a33a87f13155 |
comparison
equal
deleted
inserted
replaced
8009:1c311d8c1443 | 8015:ecb110f45c92 |
---|---|
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.6"; | 10 local want_pposix_version = "0.4.0"; |
11 | 11 |
12 local pposix = assert(require "util.pposix"); | 12 local pposix = assert(require "util.pposix"); |
13 if pposix._VERSION ~= want_pposix_version then | 13 if pposix._VERSION ~= want_pposix_version then |
14 module:log("warn", "Unknown version (%s) of binary pposix module, expected %s. Perhaps you need to recompile?", tostring(pposix._VERSION), want_pposix_version); | 14 module:log("warn", "Unknown version (%s) of binary pposix module, expected %s. Perhaps you need to recompile?", tostring(pposix._VERSION), want_pposix_version); |
15 end | 15 end |