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-rotor/files: vdr-rotor-0.1.5_vdr-1.7.13.diff
Date: Wed, 01 Dec 2010 14:54:32
Message-Id: 20101201145417.C30BD2005C@flycatcher.gentoo.org
1 hd_brummy 10/12/01 14:54:17
2
3 Added: vdr-rotor-0.1.5_vdr-1.7.13.diff
4 Log:
5 patch to fix compile probs on vdr up from 1.7.13 added, thx to M.Bürge
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 media-plugins/vdr-rotor/files/vdr-rotor-0.1.5_vdr-1.7.13.diff
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rotor/files/vdr-rotor-0.1.5_vdr-1.7.13.diff?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-rotor/files/vdr-rotor-0.1.5_vdr-1.7.13.diff?rev=1.1&content-type=text/plain
13
14 Index: vdr-rotor-0.1.5_vdr-1.7.13.diff
15 ===================================================================
16 http://www.forum.free-x.de/wbb/index.php?page=Thread&postID=13727#post13727
17
18 fix compile problems vdr up 1.7.13
19 diff -u orig/rotor-0.1.5/menu.c rotor-0.1.5/menu.c
20 --- orig/rotor-0.1.5/menu.c 2009-10-04 14:54:22.000000000 +0300
21 +++ rotor-0.1.5/menu.c 2010-03-06 22:42:23.000000000 +0200
22 @@ -139,7 +139,8 @@
23 RotorPos=RotorPositions.GetfromSource(OldChannel->Source());
24 Position=RotorPos->GetPos();
25 Frequenz=OldChannel->Frequency();
26 - if ((*OldChannel).Polarization() == 'v' || (*OldChannel).Polarization() == 'V')
27 + cDvbTransponderParameters dtp((*OldChannel).Parameters());
28 + if (dtp.Polarization() == 'v' || dtp.Polarization() == 'V')
29 Pol='V';
30 else
31 Pol='H';
32 Общие подкаталоги: orig/rotor-0.1.5/patches и rotor-0.1.5/patches
33 Общие подкаталоги: orig/rotor-0.1.5/po и rotor-0.1.5/po
34 diff -u orig/rotor-0.1.5/rotor.c rotor-0.1.5/rotor.c
35 --- orig/rotor-0.1.5/rotor.c 2009-10-04 15:10:26.000000000 +0300
36 +++ rotor-0.1.5/rotor.c 2010-03-05 23:07:52.000000000 +0200
37 @@ -93,7 +93,7 @@
38 {
39 if ((source->Code() & 0xC000) != 0x8000)
40 continue;
41 - if ((diseqc=Diseqcs.Get(source->Code(),12000,'h')) || (diseqc=Diseqcs.Get(source->Code(),12000,'v')) || (diseqc=Diseqcs.Get(source->Code(),12000,'l')) || (diseqc=Diseqcs.Get(source->Code(),12000,'r')))
42 + if ((diseqc=Diseqcs.Get(0,source->Code(),12000,'h')) || (diseqc=Diseqcs.Get(0,source->Code(),12000,'v')) || (diseqc=Diseqcs.Get(0,source->Code(),12000,'l')) || (diseqc=Diseqcs.Get(0,source->Code(),12000,'r')))
43 {
44 char *c=strdup(diseqc->Commands());
45 while (c = strchr(c, '['))