aboutsummaryrefslogtreecommitdiffstats
path: root/tools/openfire2prosody.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tools/openfire2prosody.lua')
-rw-r--r--tools/openfire2prosody.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/openfire2prosody.lua b/tools/openfire2prosody.lua
index bdea9a63..cd3e62e5 100644
--- a/tools/openfire2prosody.lua
+++ b/tools/openfire2prosody.lua
@@ -1,7 +1,7 @@
#!/usr/bin/env lua
-- Prosody IM
-- Copyright (C) 2008-2009 Waqas Hussain
---
+--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--
@@ -9,6 +9,12 @@
package.path = package.path..";../?.lua";
package.cpath = package.cpath..";../?.so"; -- needed for util.pposix used in datamanager
+local my_name = arg[0];
+if my_name:match("[/\\]") then
+ package.path = package.path..";"..my_name:gsub("[^/\\]+$", "../?.lua");
+ package.cpath = package.cpath..";"..my_name:gsub("[^/\\]+$", "../?.so");
+end
+
-- ugly workaround for getting datamanager to work outside of prosody :(
prosody = { };
prosody.platform = "unknown";