Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 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 |