diff options
author | Kim Alvefur <zash@zash.se> | 2014-01-26 21:16:24 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-01-26 21:16:24 +0100 |
commit | 2f267b95431cd14696703b2913c1530899aff990 (patch) | |
tree | a4f7cce926a2c896837d66d4d4106eae842f3fd6 | |
parent | 860aaf011188369fdf628f9edb736323fac1ea68 (diff) | |
download | prosody-2f267b95431cd14696703b2913c1530899aff990.tar.gz prosody-2f267b95431cd14696703b2913c1530899aff990.zip |
modulemanager: Always load a platform-specific module, add stub modules for Windows and unknown platforms
-rw-r--r-- | core/modulemanager.lua | 2 | ||||
-rw-r--r-- | plugins/mod_unknown.lua | 4 | ||||
-rw-r--r-- | plugins/mod_windows.lua | 4 |
3 files changed, 9 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 2ad2fc17..2e488fd5 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -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 diff --git a/plugins/mod_unknown.lua b/plugins/mod_unknown.lua new file mode 100644 index 00000000..4d20b8ad --- /dev/null +++ b/plugins/mod_unknown.lua @@ -0,0 +1,4 @@ +-- Unknown platform stub +module:set_global(); + +-- TODO Do things that make sense if we don't know about the platform diff --git a/plugins/mod_windows.lua b/plugins/mod_windows.lua new file mode 100644 index 00000000..8085fd88 --- /dev/null +++ b/plugins/mod_windows.lua @@ -0,0 +1,4 @@ +-- Windows platform stub +module:set_global(); + +-- TODO Add Windows-specific things here |