aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-01-26 21:16:24 +0100
committerKim Alvefur <zash@zash.se>2014-01-26 21:16:24 +0100
commitf73e31b9c2bcade1f146ff957117ae02e15f537e (patch)
treea4f7cce926a2c896837d66d4d4106eae842f3fd6
parent4896e7ca7e604309d65e8d0baefc24ad362b6772 (diff)
downloadprosody-f73e31b9c2bcade1f146ff957117ae02e15f537e.tar.gz
prosody-f73e31b9c2bcade1f146ff957117ae02e15f537e.zip
modulemanager: Always load a platform-specific module, add stub modules for Windows and unknown platforms
-rw-r--r--core/modulemanager.lua2
-rw-r--r--plugins/mod_unknown.lua4
-rw-r--r--plugins/mod_windows.lua4
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