]> Pileus Git - ~andy/gtk/commitdiff
Don't bother mentioning the -fnative-struct (used by GCC 2) switch in the
authorTor Lillqvist <tml@novell.com>
Tue, 19 Jul 2005 07:09:37 +0000 (07:09 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Tue, 19 Jul 2005 07:09:37 +0000 (07:09 +0000)
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.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkmain.c

index 26645780ef0e2ce47c65641b6fda7af0daea1643..b5b97813b29e38409e997fc1ac77f21900e19efc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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. 
index 26645780ef0e2ce47c65641b6fda7af0daea1643..b5b97813b29e38409e997fc1ac77f21900e19efc 100644 (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. 
index 26645780ef0e2ce47c65641b6fda7af0daea1643..b5b97813b29e38409e997fc1ac77f21900e19efc 100644 (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. 
index 49817a9050676949676f58bdcff5e0e088f653fe..07fd7a854cf60a1f4bd2aa21eb85b6da4569c939 100644 (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