Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/gtk+/files: gtk+-2.20.1-darwin8.patch
Date: Sat, 03 Jul 2010 13:08:04
Message-Id: 20100703130802.15E7C2C5F4@corvid.gentoo.org
1 grobian 10/07/03 13:08:01
2
3 Added: gtk+-2.20.1-darwin8.patch
4 Log:
5 Fix compilation on Darwin8
6 (Portage version: 2.2.01.15352-prefix/cvs/Darwin powerpc)
7
8 Revision Changes Path
9 1.1 x11-libs/gtk+/files/gtk+-2.20.1-darwin8.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+/files/gtk+-2.20.1-darwin8.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtk+/files/gtk+-2.20.1-darwin8.patch?rev=1.1&content-type=text/plain
13
14 Index: gtk+-2.20.1-darwin8.patch
15 ===================================================================
16 NSUInteger is available starting from OSX 10.5 (Leopard)
17
18 --- gtk/gtkquartz.c
19 +++ gtk/gtkquartz.c
20 @@ -260,7 +260,7 @@
21 GdkDisplay *display;
22 gint format;
23 const guchar *data;
24 - NSUInteger length;
25 + guint length;
26
27 target = gdk_atom_name (gtk_selection_data_get_target (selection_data));
28 display = gtk_selection_data_get_display (selection_data);