mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
Pass shared-library as-is to g_module_open
Because it already has the lib prefix and the .so postfix https://bugzilla.gnome.org/show_bug.cgi?id=639961
This commit is contained in:
parent
5857d9c231
commit
04c822609a
@ -2129,10 +2129,6 @@ _g_typelib_do_dlopen (GITypelib *typelib)
|
||||
{
|
||||
GString *shlib_full = g_string_new (shlibs[i]);
|
||||
|
||||
/* Prefix with "lib", try both .la and .so */
|
||||
if (!g_str_has_prefix (shlib_full->str, "lib"))
|
||||
g_string_prepend (shlib_full, "lib");
|
||||
g_string_append (shlib_full, ".la");
|
||||
module = g_module_open (shlib_full->str, G_MODULE_BIND_LAZY);
|
||||
if (module == NULL)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user