mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
5bc8b2a379
19 changed files with 111 additions and 54 deletions
|
@ -466,6 +466,7 @@ function commands.about(arg)
|
|||
ssl = "LuaSec";
|
||||
};
|
||||
local lunbound = dependencies.softreq"lunbound";
|
||||
local lxp = dependencies.softreq"lxp";
|
||||
for name, module in pairs(package.loaded) do
|
||||
if type(module) == "table" and rawget(module, "_VERSION")
|
||||
and name ~= "_G" and not name:match("%.") then
|
||||
|
@ -486,6 +487,9 @@ function commands.about(arg)
|
|||
end
|
||||
library_versions["libunbound"] = lunbound._LIBVER;
|
||||
end
|
||||
if lxp then
|
||||
library_versions["libexpat"] = lxp._EXPAT_VERSION;
|
||||
end
|
||||
for name, version in sorted_pairs(module_versions) do
|
||||
print(name..":"..string.rep(" ", longest_name-#name), version);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue