Don't bother mentioning the -fnative-struct (used by GCC 2) switch in the

2005-07-19  Tor Lillqvist  <tml@novell.com>

	* gtk/gtkmain.c (check_sizeof_GtkWindow, check_sizeof_GtkBox):
	Don't bother mentioning the -fnative-struct (used by GCC 2) switch
	in the error message any longer.
This commit is contained in:
Tor Lillqvist 2005-07-19 07:09:37 +00:00 committed by Tor Lillqvist
parent f6bc8ef13b
commit 5ed2b79897
4 changed files with 22 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2005-07-19 Tor Lillqvist <tml@novell.com>
* gtk/gtkmain.c (check_sizeof_GtkWindow, check_sizeof_GtkBox):
Don't bother mentioning the -fnative-struct (used by GCC 2) switch
in the error message any longer.
2005-07-18 Matthias Clasen <mclasen@redhat.com>
* gdk/gdkpixbuf-render.c: Small formatting fixes in doc comments.

View File

@ -1,3 +1,9 @@
2005-07-19 Tor Lillqvist <tml@novell.com>
* gtk/gtkmain.c (check_sizeof_GtkWindow, check_sizeof_GtkBox):
Don't bother mentioning the -fnative-struct (used by GCC 2) switch
in the error message any longer.
2005-07-18 Matthias Clasen <mclasen@redhat.com>
* gdk/gdkpixbuf-render.c: Small formatting fixes in doc comments.

View File

@ -1,3 +1,9 @@
2005-07-19 Tor Lillqvist <tml@novell.com>
* gtk/gtkmain.c (check_sizeof_GtkWindow, check_sizeof_GtkBox):
Don't bother mentioning the -fnative-struct (used by GCC 2) switch
in the error message any longer.
2005-07-18 Matthias Clasen <mclasen@redhat.com>
* gdk/gdkpixbuf-render.c: Small formatting fixes in doc comments.

View File

@ -763,9 +763,8 @@ check_sizeof_GtkWindow (size_t sizeof_GtkWindow)
"The code using GTK+ thinks GtkWindow is of different\n"
"size than it actually is in this build of GTK+.\n"
"On Windows, this probably means that you have compiled\n"
"your code with gcc without the -fnative-struct\n"
"(or -mms-bitfields) switch, or that you are using\n"
"an unsupported compiler.");
"your code with gcc without the -mms-bitfields switch,\n"
"or that you are using an unsupported compiler.");
}
/* In GTK+ 2.0 the GtkWindow struct actually is the same size in
@ -782,9 +781,8 @@ check_sizeof_GtkBox (size_t sizeof_GtkBox)
"The code using GTK+ thinks GtkBox is of different\n"
"size than it actually is in this build of GTK+.\n"
"On Windows, this probably means that you have compiled\n"
"your code with gcc without the -fnative-struct\n"
"(or -mms-bitfields) switch, or that you are using\n"
"an unsupported compiler.");
"your code with gcc without the -mms-bitfields switch,\n"
"or that you are using an unsupported compiler.");
}
/* These two functions might get more checks added later, thus pass