logic was reversed on need_underscore test

This commit is contained in:
Seth Alves 1998-10-17 23:38:42 +00:00
parent 3825ff0387
commit 68c6544ebb

View File

@ -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