projects
/
dana
/
cg-glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3825ff0
)
logic was reversed on need_underscore test
author
Seth Alves
<alves@src.gnome.org>
Sat, 17 Oct 1998 23:38:42 +0000
(23:38 +0000)
committer
Seth Alves
<alves@src.gnome.org>
Sat, 17 Oct 1998 23:38:42 +0000
(23:38 +0000)
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index 57307f199449c8d82c01076d8c3ee239ead4d238..bd978073bee099c89a66d9df21a2b2fa32ad515b 100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-440,7
+440,7
@@
dnl *** check whether we need preceeding underscores
if (handle) {
f1 = dlsym (handle, "glib_underscore_test");
f2 = dlsym (handle, "_glib_underscore_test");
- } return
!
(f2 && !f1);
+ } return (f2 && !f1);
}],
glib_cv_uscore=yes
G_MODULE_NEED_USCORE=1