GNOME Bugzilla – Bug 641350
Build with Sun/Oracle cc fails due to empty struct in glib/tests/mem-overflow.c
Last modified: 2013-11-24 01:29:59 UTC
glib/tests/mem-overflow.c contains: typedef struct { } Empty; This is not valid Ansi C, and is rejected by the Sun c compiler, preventing a build of glib. Skipping this test when compiling with the Sun c compiler, either at a file level, or within mem-overflow.c would work around the problem. Thanks,
https://bugzilla.gnome.org/show_bug.cgi?id=615379#c1 seems to preempt this bug...
the test is now protected by #ifdef __GNUC__