GNOME Bugzilla – Bug 352274
Location of G_GNUC_INTERNAL breaks Solaris build
Last modified: 2006-08-25 13:32:25 UTC
libgnomeui uses the G_GNUC_INTERNAL macro. There are 2 instances where it is at the end of the line. For the Solaris forte compiler this must be placed at the start of the line. In other instances it is at the start of the line. Can you please apply the attached patch - it moves the macro in the 2 instances. This will not affect gcc - it does not care where the macro is placed. You may want to consider using a private macro like cairo did. See also 350606 (gtk-engines) and 352981 (glib). 350606 has a link to the cairo change where they resolved this issue with a private macro.
Created attachment 71324 [details] [review] Move G_GNUC_INTERNAL to the start of the line.
Commited. Thanks.