Gentoo Archives: gentoo-commits

From: "Joerg Bornkessel (hd_brummy)" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-decruft/files: vdr-decruft-0.0.4_compile.patch
Date: Fri, 30 Jan 2015 16:04:56
Message-Id: 20150130160448.A476D10B26@oystercatcher.gentoo.org
1 hd_brummy 15/01/30 16:04:48
2
3 Added: vdr-decruft-0.0.4_compile.patch
4 Log:
5 compile fixed, wrt bug 537658; minor fixes
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 34C2808A)
8
9 Revision Changes Path
10 1.1 media-plugins/vdr-decruft/files/vdr-decruft-0.0.4_compile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-decruft/files/vdr-decruft-0.0.4_compile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-decruft/files/vdr-decruft-0.0.4_compile.patch?rev=1.1&content-type=text/plain
14
15 Index: vdr-decruft-0.0.4_compile.patch
16 ===================================================================
17 compile fix
18 https://bugs.gentoo.org/show_bug.cgi?id=537658
19 Signed-of-by: Joerg Bornkessel <hd_brummy@g.o> 30/jan/2015
20 diff -Naur decruft-0.0.4.orig/cruft.c decruft-0.0.4/cruft.c
21 --- decruft-0.0.4.orig/cruft.c 2015-01-30 16:41:24.000000000 +0100
22 +++ decruft-0.0.4/cruft.c 2015-01-30 16:42:55.000000000 +0100
23 @@ -15,6 +15,7 @@
24
25
26 #include <vdr/channels.h>
27 +#include <vdr/dvbdevice.h>
28
29 #include <stdio.h>
30 #include <string.h>
31 @@ -439,7 +440,8 @@
32 }
33 }
34 if ( settings->num_pols ) {
35 - char pol = tolower(Channel->Polarization());
36 + cDvbTransponderParameters dtp(Channel->Parameters());
37 + char pol = tolower(dtp.Polarization());
38 tests++;
39 for ( j = 0; j < settings->num_pols; j++ ) {
40 if ( settings->pols[j] == pol ) {