GNOME Bugzilla – Bug 346494
prototype mismatch in glib/gconvert.c
Last modified: 2006-07-22 17:40:15 UTC
In glib-2.12.0, glib/gconvert.c contains: extern const char **_g_charset_get_aliases (const char *canonical_name) G_GNUC_ INTERNAL; while glib/gutf8.c contains: const char ** G_GNUC_INTERNAL _g_charset_get_aliases (const char *canonical_name) i.e. the G_GNUC_INTERNAL part is at the wrong place in glib/gconvert.c. This breaks the build on NetBSD/amd64.
Created attachment 68323 [details] [review] Patch fixing the problem.
2006-07-22 Matthias Clasen <mclasen@redhat.com> * glib/gconvert.c: Fix the prototype of _g_charset_get_aliases. (#346494, Thomas Klausner)