diff --git a/ChangeLog b/ChangeLog index ad63dad45..1cb258d39 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 ad63dad45..1cb258d39 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 ad63dad45..1cb258d39 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 ad63dad45..1cb258d39 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 ad63dad45..1cb258d39 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 ad63dad45..1cb258d39 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 ad63dad45..1cb258d39 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 ad63dad45..1cb258d39 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 693e6c617..ce84cd216 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 (); } ],