diff options
Diffstat (limited to 'meta/recipes-gnome/gtk-engines/gtk-engines-2.20.2/glib-2.32.patch')
-rw-r--r-- | meta/recipes-gnome/gtk-engines/gtk-engines-2.20.2/glib-2.32.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gtk-engines/gtk-engines-2.20.2/glib-2.32.patch b/meta/recipes-gnome/gtk-engines/gtk-engines-2.20.2/glib-2.32.patch new file mode 100644 index 0000000000..f0b878d376 --- /dev/null +++ b/meta/recipes-gnome/gtk-engines/gtk-engines-2.20.2/glib-2.32.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | From 8d49a386f467cbf8e0842d2218126f643e50f834 Mon Sep 17 00:00:00 2001 | ||
2 | From: Dominique Leuenberger <dimstar@opensuse.org> | ||
3 | Date: Sun, 27 Nov 2011 14:24:57 +0000 | ||
4 | Subject: Fix build with glib 2.31: Only glib.h can be #include'd. Fixes bug #664914 | ||
5 | |||
6 | Upstream-Status: Backport | ||
7 | |||
8 | --- | ||
9 | diff --git a/engines/clearlooks/src/animation.c b/engines/clearlooks/src/animation.c | ||
10 | index 1f7a41f..56a9286 100644 | ||
11 | --- a/engines/clearlooks/src/animation.c | ||
12 | +++ b/engines/clearlooks/src/animation.c | ||
13 | @@ -28,7 +28,7 @@ | ||
14 | #include "animation.h" | ||
15 | |||
16 | #ifdef HAVE_WORKING_ANIMATION | ||
17 | -#include <glib/gtimer.h> | ||
18 | +#include <glib.h> | ||
19 | |||
20 | struct _AnimationInfo { | ||
21 | GTimer *timer; | ||
22 | -- | ||
23 | cgit v0.9.0.2 | ||