From: Sebastian Wilhelmi Date: Mon, 30 Jul 2001 09:02:37 +0000 (+0000) Subject: #undef inline before testing whether it works to avoid false positives. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=548ac42ad8f354fea18358d58523330b6f297bc9;p=dana%2Fcg-glib.git #undef inline before testing whether it works to avoid false positives. 2001-07-30 Sebastian Wilhelmi * configure.in: #undef inline before testing whether it works to avoid false positives. Patch from Garry R. Osgood . Fixes bug #58272. --- diff --git a/ChangeLog b/ChangeLog index ad63dad4..1cb258d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index ad63dad4..1cb258d3 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index ad63dad4..1cb258d3 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index ad63dad4..1cb258d3 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index ad63dad4..1cb258d3 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index ad63dad4..1cb258d3 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index ad63dad4..1cb258d3 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index ad63dad4..1cb258d3 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,9 +1,13 @@ 2001-07-30 Sebastian Wilhelmi + * configure.in: #undef inline before testing whether it works to + avoid false positives. Patch from Garry R. Osgood + . Fixes bug #58272. + * gmodule/gmodule.c (parse_libtool_archive): build the library name ourselfs ... so we can load the library specified and not mangle any name not beggining in 'lib'. Patch from Michael Meeks - . + . Fixes bug #58226. 2001-07-29 Ron Steinke diff --git a/configure.in b/configure.in index 693e6c61..ce84cd21 100644 --- a/configure.in +++ b/configure.in @@ -372,6 +372,7 @@ xyes) AC_DEFINE(G_HAVE___INLINE__,1,[Have __inline__ keyword]) esac AC_CACHE_CHECK([for inline], glib_cv_hasinline,[ AC_TRY_RUN([ + #undef inline inline int foo () { return 0; } int main () { return foo (); } ],