Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/glamor/files: glamor-0.6.0-xv-add-missing-include.patch
Date: Tue, 11 Feb 2014 12:08:32
Message-Id: 20140211120824.BE5992004E@flycatcher.gentoo.org
1 chithanh 14/02/11 12:08:24
2
3 Added: glamor-0.6.0-xv-add-missing-include.patch
4 Log:
5 fix xv build against pre 1.13 servers, bug #499442.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 x11-libs/glamor/files/glamor-0.6.0-xv-add-missing-include.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/files/glamor-0.6.0-xv-add-missing-include.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/files/glamor-0.6.0-xv-add-missing-include.patch?rev=1.1&content-type=text/plain
14
15 Index: glamor-0.6.0-xv-add-missing-include.patch
16 ===================================================================
17 From 55257ac3ee92143d0d8339faa0272f95a792febb Mon Sep 17 00:00:00 2001
18 From: =?UTF-8?q?Ch=C3=AD-Thanh=20Christopher=20Nguy=E1=BB=85n?=
19 <chithanh@g.o>
20 Date: Tue, 11 Feb 2014 12:08:07 +0100
21 Subject: [PATCH] glamor_xv: add missing include
22
23 glamor_xv.c uses DamageDamageRegion but does not include xorg/damage.h. This
24 causes the build to fail if 9b8217f9ef6279fff6628631d18497bed0343ef9 is not
25 present in the X server.
26
27 Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=499442
28 ---
29 src/glamor_xv.c | 1 +
30 1 file changed, 1 insertion(+)
31
32 diff --git a/src/glamor_xv.c b/src/glamor_xv.c
33 index a89b4cd..b40b6e8 100644
34 --- a/src/glamor_xv.c
35 +++ b/src/glamor_xv.c
36 @@ -37,6 +37,7 @@
37 #ifdef GLAMOR_XV
38 #include "xf86xv.h"
39 #include <X11/extensions/Xv.h>
40 +#include <xorg/damage.h>
41 #include "fourcc.h"
42 /* Reference color space transform data */
43 typedef struct tagREF_TRANSFORM
44 --
45 1.8.3.2