mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-10-29 03:34:16 +00:00
open modules G_MODULE_BIND_LOCAL
2005-12-13 Alexander Larsson <alexl@redhat.com> * libnautilus-private/nautilus-module.c (nautilus_module_load): open modules G_MODULE_BIND_LOCAL
This commit is contained in:
parent
b2bd3ab2fc
commit
10f266d592
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-12-13 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* libnautilus-private/nautilus-module.c (nautilus_module_load):
|
||||
open modules G_MODULE_BIND_LOCAL
|
||||
|
||||
2005-12-12 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* configure.in:
|
||||
|
|
|
@ -72,7 +72,7 @@ nautilus_module_load (GTypeModule *gmodule)
|
|||
|
||||
module = NAUTILUS_MODULE (gmodule);
|
||||
|
||||
module->library = g_module_open (module->path, G_MODULE_BIND_LAZY);
|
||||
module->library = g_module_open (module->path, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
|
||||
|
||||
if (!module->library) {
|
||||
g_warning (g_module_error ());
|
||||
|
|
Loading…
Reference in a new issue