mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 07:26:15 +01:00
logic was reversed on need_underscore test
This commit is contained in:
parent
3825ff0387
commit
68c6544ebb
@ -440,7 +440,7 @@ dnl *** check whether we need preceeding underscores
|
|||||||
if (handle) {
|
if (handle) {
|
||||||
f1 = dlsym (handle, "glib_underscore_test");
|
f1 = dlsym (handle, "glib_underscore_test");
|
||||||
f2 = dlsym (handle, "_glib_underscore_test");
|
f2 = dlsym (handle, "_glib_underscore_test");
|
||||||
} return !(f2 && !f1);
|
} return (f2 && !f1);
|
||||||
}],
|
}],
|
||||||
glib_cv_uscore=yes
|
glib_cv_uscore=yes
|
||||||
G_MODULE_NEED_USCORE=1
|
G_MODULE_NEED_USCORE=1
|
||||||
|
Loading…
Reference in New Issue
Block a user