Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/mythtv/files: mythtv-0.21-dvb-headers.patch mythtv-0.21-bttv.patch
Date: Fri, 29 May 2009 20:13:07
Message-Id: E1MA8Ru-0007tk-Am@stork.gentoo.org
1 beandog 09/05/29 20:13:06
2
3 Added: mythtv-0.21-dvb-headers.patch
4 mythtv-0.21-bttv.patch
5 Log:
6 Backport MythTV patch for DVB headers, bug 253338; Support VIA + XvMC, bug 225025; restore old bttv patch
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-tv/mythtv/files/mythtv-0.21-dvb-headers.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/mythtv/files/mythtv-0.21-dvb-headers.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/mythtv/files/mythtv-0.21-dvb-headers.patch?rev=1.1&content-type=text/plain
14
15 Index: mythtv-0.21-dvb-headers.patch
16 ===================================================================
17 --- libs/libmythtv/dvbtypes.h.orig 2009-05-29 14:05:20.000000000 -0600
18 +++ libs/libmythtv/dvbtypes.h 2009-05-29 14:06:22.000000000 -0600
19 @@ -19,15 +19,15 @@
20 #include <linux/dvb/frontend.h>
21 #include <linux/dvb/dmx.h>
22
23 -#if (DVB_API_VERSION != 3)
24 -# error "DVB driver includes with API version 3 not found!"
25 +#if (DVB_API_VERSION != 3 && DVB_API_VERSION != 5)
26 +# error "DVB driver includes with API version 3 or 5 not found!"
27 #endif
28
29 #ifndef DVB_API_VERSION_MINOR
30 # define DVB_API_VERSION_MINOR 0
31 #endif
32
33 -#if (DVB_API_VERSION >= 3 && DVB_API_VERSION_MINOR >= 1)
34 +#if ((DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1) || (DVB_API_VERSION > 3))
35 # define USE_ATSC
36 #else
37 #warning DVB API version < 3.1
38
39
40
41 1.4 media-tv/mythtv/files/mythtv-0.21-bttv.patch
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/mythtv/files/mythtv-0.21-bttv.patch?rev=1.4&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/mythtv/files/mythtv-0.21-bttv.patch?rev=1.4&content-type=text/plain
45 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/mythtv/files/mythtv-0.21-bttv.patch?r1=1.3&r2=1.4