summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Bornkessel <hd_brummy@gentoo.org>2019-12-25 23:11:26 +0100
committerJoerg Bornkessel <hd_brummy@gentoo.org>2019-12-25 23:11:26 +0100
commit2ee355dd5e11ad09801ad0115fabd1e6b02f3531 (patch)
treece9c1112ed32622613bca0e3fb6ecd2402b96a31 /media-plugins/vdr-lcdproc/files
parentgames-misc/fortune-mod-zx-error: Update HOMEPAGE and SRC_URI. (diff)
downloadgentoo-2ee355dd5e11ad09801ad0115fabd1e6b02f3531.tar.gz
gentoo-2ee355dd5e11ad09801ad0115fabd1e6b02f3531.tar.bz2
gentoo-2ee355dd5e11ad09801ad0115fabd1e6b02f3531.zip
media-plugins/vdr-lcdproc: compile fix for media-video/vdr-2.4
needs media-video/vdr-2.4 invalid suffix on literal; C++11 issues fixed moved to eapi 7 Package-Manager: Portage-2.3.82, Repoman-2.3.18 Signed-off-by: Joerg Bornkessel <hd_brummy@gentoo.org>
Diffstat (limited to 'media-plugins/vdr-lcdproc/files')
-rw-r--r--media-plugins/vdr-lcdproc/files/vdr-2.4_lcdproc-0.0.10.9.patch45
1 files changed, 45 insertions, 0 deletions
diff --git a/media-plugins/vdr-lcdproc/files/vdr-2.4_lcdproc-0.0.10.9.patch b/media-plugins/vdr-lcdproc/files/vdr-2.4_lcdproc-0.0.10.9.patch
new file mode 100644
index 000000000000..0d2bbe4bb69b
--- /dev/null
+++ b/media-plugins/vdr-lcdproc/files/vdr-2.4_lcdproc-0.0.10.9.patch
@@ -0,0 +1,45 @@
+compilefix for vdr-2.4
+Suggested-by: MatthiasK @ vdr-portal.de
+
+fixed invalid suffix on literal; C++11 space issues
+
+Signed-off-by: Joerg Bornkessel <hd_brummy@gentoo.org> ( 25 Dec 2019 )
+diff -Naur lcdproc-0.0.10-jw9.orig/lcd.c lcdproc-0.0.10-jw9/lcd.c
+--- lcdproc-0.0.10-jw9.orig/lcd.c 2019-12-25 22:53:55.187492713 +0100
++++ lcdproc-0.0.10-jw9/lcd.c 2019-12-25 22:54:33.075492713 +0100
+@@ -808,7 +808,7 @@
+ cLcd::Write(LcdSetup.ShowTime?1:4," Welcome to V D R\0");
+ cLcd::Write(LcdSetup.ShowTime?2:3,"--------------------\0");
+ cLcd::Write(LcdSetup.ShowTime?3:1,"Video Disk Recorder\0");
+- cLcd::Write(LcdSetup.ShowTime?4:2,"Version: "VDRVERSION"\0");
++ cLcd::Write(LcdSetup.ShowTime?4:2,"Version: " VDRVERSION "\0");
+
+ // Output init
+ if (LcdSetup.OutputNumber > 0){
+@@ -850,11 +850,15 @@
+ }
+
+ if ( time(NULL) > nextLcdUpdate ) {
+- cChannel *channel = Channels.GetByNumber(primaryDvbApi->CurrentChannel());
++// cChannel *channel = Channels.GetByNumber(primaryDvbApi->CurrentChannel());
++ LOCK_CHANNELS_READ;
++ const cChannel *channel = Channels->GetByNumber(primaryDvbApi->CurrentChannel());
+ const cEvent *Present = NULL;
+- cSchedulesLock schedulesLock;
++/* cSchedulesLock schedulesLock;
+ const cSchedules *Schedules = cSchedules::Schedules(schedulesLock);
+ if (Schedules) {
++ const cSchedule *Schedule = Schedules->GetSchedule(channel->GetChannelID()); */
++ LOCK_SCHEDULES_READ;
+ const cSchedule *Schedule = Schedules->GetSchedule(channel->GetChannelID());
+ if (Schedule) {
+ const char *PresentTitle, *PresentSubtitle;
+@@ -873,7 +877,7 @@
+ rtcycle = 10; // RT
+ lcrCycle = 10; // LCR
+ }
+- }
++// }
+ if ( nextLcdUpdate <= time(NULL) )
+ nextLcdUpdate=(time(NULL)/60)*60+60;
+ }