mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
modulemanager: Always load a platform-specific module, add stub modules for Windows and unknown platforms
This commit is contained in:
parent
4896e7ca7e
commit
f73e31b9c2
3 changed files with 9 additions and 1 deletions
|
@ -29,7 +29,7 @@ pcall = function(f, ...)
|
|||
return xpcall(function() return f(unpack(params, 1, n)) end, function(e) return tostring(e).."\n"..debug_traceback(); end);
|
||||
end
|
||||
|
||||
local autoload_modules = {"presence", "message", "iq", "offline", "c2s", "s2s"};
|
||||
local autoload_modules = {prosody.platform, "presence", "message", "iq", "offline", "c2s", "s2s"};
|
||||
local component_inheritable_modules = {"tls", "dialback", "iq", "s2s"};
|
||||
|
||||
-- We need this to let modules access the real global namespace
|
||||
|
|
4
plugins/mod_unknown.lua
Normal file
4
plugins/mod_unknown.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
-- Unknown platform stub
|
||||
module:set_global();
|
||||
|
||||
-- TODO Do things that make sense if we don't know about the platform
|
4
plugins/mod_windows.lua
Normal file
4
plugins/mod_windows.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
-- Windows platform stub
|
||||
module:set_global();
|
||||
|
||||
-- TODO Add Windows-specific things here
|
Loading…
Add table
Add a link
Reference in a new issue