Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/hulahop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hulahop.cpp')
-rw-r--r--src/hulahop.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/hulahop.cpp b/src/hulahop.cpp
index 32c9f4f..8448a5b 100644
--- a/src/hulahop.cpp
+++ b/src/hulahop.cpp
@@ -26,11 +26,28 @@
static HulahopDirectoryProvider kDirectoryProvider;
+static void
+setup_plugin_path()
+{
+ const char *user_path;
+ char *new_path;
+
+ user_path = g_getenv ("MOZ_PLUGIN_PATH");
+ new_path = g_strconcat(user_path ? user_path : "",
+ user_path ? ":" : "",
+ PLUGIN_PATH,
+ (char *) NULL);
+ g_setenv ("MOZ_PLUGIN_PATH", new_path, TRUE);
+ g_free (new_path);
+}
+
gboolean
hulahop_startup()
{
nsresult rv;
+ setup_plugin_path();
+
nsCOMPtr<nsILocalFile> greDir;
rv = NS_NewNativeLocalFile(nsCString(MOZILLA_HOME), PR_TRUE,
getter_AddRefs(greDir));