aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-10-29 22:27:52 +0800
committerChristian Persch <chpe@src.gnome.org>2005-10-29 22:27:52 +0800
commit3dcdf942d8325c81bc175b2b7876526860b762f0 (patch)
tree4ef46f377b8532a2b4b4bc8da488b0acd405290d
parentba697048386d840a5af8a9a56f47b7e3bd4ead9e (diff)
downloadgsoc2013-epiphany-3dcdf942d8325c81bc175b2b7876526860b762f0.tar
gsoc2013-epiphany-3dcdf942d8325c81bc175b2b7876526860b762f0.tar.gz
gsoc2013-epiphany-3dcdf942d8325c81bc175b2b7876526860b762f0.tar.bz2
gsoc2013-epiphany-3dcdf942d8325c81bc175b2b7876526860b762f0.tar.lz
gsoc2013-epiphany-3dcdf942d8325c81bc175b2b7876526860b762f0.tar.xz
gsoc2013-epiphany-3dcdf942d8325c81bc175b2b7876526860b762f0.tar.zst
gsoc2013-epiphany-3dcdf942d8325c81bc175b2b7876526860b762f0.zip
Use G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL when opening the extension
2005-10-29 Christian Persch <chpe@cvs.gnome.org> * lib/ephy-module.c: (ephy_module_load): Use G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL when opening the extension module.
-rw-r--r--ChangeLog7
-rw-r--r--lib/ephy-module.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cd35d5e73..97aaa24ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2005-10-29 Christian Persch <chpe@cvs.gnome.org>
+ * lib/ephy-module.c: (ephy_module_load):
+
+ Use G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL when opening
+ the extension module.
+
+2005-10-29 Christian Persch <chpe@cvs.gnome.org>
+
* lib/widgets/ephy-spinner.c: (bump_spinner_frame_cb),
(ephy_spinner_start):
diff --git a/lib/ephy-module.c b/lib/ephy-module.c
index 39bf5b35c..90a7f1713 100644
--- a/lib/ephy-module.c
+++ b/lib/ephy-module.c
@@ -95,7 +95,8 @@ ephy_module_load (GTypeModule *gmodule)
{
char *path = g_build_filename (EXTENSIONS_DIR, module->path, NULL);
- module->library = g_module_open (path, 0);
+ module->library = g_module_open (path, G_MODULE_BIND_LAZY |
+ G_MODULE_BIND_LOCAL);
g_free (path);
}