Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/gtk-engines/files: gtk-engines-2.20.2-glib.h.patch gtk-engines-2.18.3-fix-system-lua-check.patch gtk-engines-2.20.1-xfce-workaround.patch gtk-engines-2.20.1-evolution-workaround.patch
Date: Mon, 02 Apr 2012 04:33:44
Message-Id: 20120402043335.50F092004B@flycatcher.gentoo.org
1 tetromino 12/04/02 04:33:35
2
3 Added: gtk-engines-2.20.2-glib.h.patch
4 Removed: gtk-engines-2.18.3-fix-system-lua-check.patch
5 gtk-engines-2.20.1-xfce-workaround.patch
6 gtk-engines-2.20.1-evolution-workaround.patch
7 Log:
8 Fix building with glib-2.32 (bug #410455, thanks to Tom-Steve Watzke). Drop stale patches.
9
10 (Portage version: 2.2.0_alpha95/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.1 x11-themes/gtk-engines/files/gtk-engines-2.20.2-glib.h.patch
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines/files/gtk-engines-2.20.2-glib.h.patch?rev=1.1&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/gtk-engines/files/gtk-engines-2.20.2-glib.h.patch?rev=1.1&content-type=text/plain
17
18 Index: gtk-engines-2.20.2-glib.h.patch
19 ===================================================================
20 From 8d49a386f467cbf8e0842d2218126f643e50f834 Mon Sep 17 00:00:00 2001
21 From: Dominique Leuenberger <dimstar@××××××××.org>
22 Date: Sun, 27 Nov 2011 15:24:57 +0100
23 Subject: [PATCH] Fix build with glib 2.31: Only glib.h can be #include'd.
24 Fixes bug #664914
25
26 ---
27 engines/clearlooks/src/animation.c | 2 +-
28 1 files changed, 1 insertions(+), 1 deletions(-)
29
30 diff --git a/engines/clearlooks/src/animation.c b/engines/clearlooks/src/animation.c
31 index 1f7a41f..56a9286 100644
32 --- a/engines/clearlooks/src/animation.c
33 +++ b/engines/clearlooks/src/animation.c
34 @@ -28,7 +28,7 @@
35 #include "animation.h"
36
37 #ifdef HAVE_WORKING_ANIMATION
38 -#include <glib/gtimer.h>
39 +#include <glib.h>
40
41 struct _AnimationInfo {
42 GTimer *timer;
43 --
44 1.7.8.5