summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-04-08 17:46:45 +0200
committerJavier Jardón <jjardon@gnome.org>2010-04-18 19:54:22 +0200
commit791962e06d0511c5e9435acb569a60b34fc279cf (patch)
treef2cae98fcf5d163589eb45f26a24bfc227199719
parent72d5cc8cd51f8bc3f66186c668f2d4cfd191f6ca (diff)
downloadgdk-pixbuf-791962e06d0511c5e9435acb569a60b34fc279cf.tar.gz
Include <X11/Xutil.h> in gdkdnd-x11.c
Otherwise, inclusion of shape.h triggers an unknown type error for Region, and compile fails, at least in Solaris. Reported by Philip Brown here: https://bugzilla.gnome.org/show_bug.cgi?id=615028
-rw-r--r--gdk/x11/gdkdnd-x11.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk/x11/gdkdnd-x11.c b/gdk/x11/gdkdnd-x11.c
index 60adca0d3..4b7fd8514 100644
--- a/gdk/x11/gdkdnd-x11.c
+++ b/gdk/x11/gdkdnd-x11.c
@@ -25,7 +25,9 @@
*/
#include "config.h"
+
#include <X11/Xlib.h>
+#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <X11/extensions/shape.h>