summaryrefslogtreecommitdiff
path: root/gdk/gdkdisplay.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-03-16 03:17:27 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-03-16 03:17:27 +0000
commit2a2d769d423ad79f606b995f9016dc59e72d9d8c (patch)
tree1c513437b23445551532702651075f37a93c6db0 /gdk/gdkdisplay.c
parent34bfd7127948fd7608d53e90d2404caf21d9478e (diff)
downloadgdk-pixbuf-2a2d769d423ad79f606b995f9016dc59e72d9d8c.tar.gz
Make PLT-reduction work with gcc4, and don't include everything in
2005-03-15 Matthias Clasen <mclasen@redhat.com> Make PLT-reduction work with gcc4, and don't include everything in gdkalias.h: * gdk/gdk.symbols: Group symbols by header and source file. * gdk/makegdkalias.pl: Protect definitions by the same preprocessor symbols used to guard the headers. Move the alias declarations to a separate file which is produced when calling makegdkalias.pl -def * gdk/Makefile.am (gdkaliasdef.c): Add a rule to generate this file. * gdk/*.c, gdk/x11/*.c: Include gdkalias.h after the other headers, include gdkaliasdef.c at the bottom.
Diffstat (limited to 'gdk/gdkdisplay.c')
-rw-r--r--gdk/gdkdisplay.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdk/gdkdisplay.c b/gdk/gdkdisplay.c
index f115c7cb2..463c98e9f 100644
--- a/gdk/gdkdisplay.c
+++ b/gdk/gdkdisplay.c
@@ -23,12 +23,12 @@
#include <config.h>
#include <glib.h>
-#include "gdkalias.h"
#include "gdk.h" /* gdk_event_send_client_message() */
#include "gdkdisplay.h"
#include "gdkinternals.h"
#include "gdkmarshalers.h"
#include "gdkscreen.h"
+#include "gdkalias.h"
enum {
CLOSED,
@@ -647,4 +647,5 @@ gdk_set_pointer_hooks (const GdkPointerHooks *new_hooks)
return (GdkPointerHooks *)result;
}
-
+#define __GDK_DISPLAY_C__
+#include "gdkaliasdef.c"