r4081 - in vdr/vdr-plugin-vcd/trunk/debian: . patches
Thomas Günther
tom-guest at alioth.debian.org
Thu Jan 18 22:34:52 CET 2007
Author: tom-guest
Date: 2007-01-18 22:34:51 +0100 (Thu, 18 Jan 2007)
New Revision: 4081
Added:
vdr/vdr-plugin-vcd/trunk/debian/patches/91_vcd-0.7-1.5.0.dpatch
Modified:
vdr/vdr-plugin-vcd/trunk/debian/changelog
vdr/vdr-plugin-vcd/trunk/debian/patches/00list
Log:
Added 91_vcd-0.7-1.5.0.dpatch
Modified: vdr/vdr-plugin-vcd/trunk/debian/changelog
===================================================================
--- vdr/vdr-plugin-vcd/trunk/debian/changelog 2007-01-18 21:32:31 UTC (rev 4080)
+++ vdr/vdr-plugin-vcd/trunk/debian/changelog 2007-01-18 21:34:51 UTC (rev 4081)
@@ -1,3 +1,10 @@
+vdr-plugin-vcd (0.7-28) UNRELEASED; urgency=low
+
+ * NOT RELEASED YET
+ * Added 91_vcd-0.7-1.5.0.dpatch
+
+ -- Thomas Günther <tom at toms-cafe.de> Thu, 18 Jan 2007 02:10:16 +0100
+
vdr-plugin-vcd (0.7-27) experimental; urgency=low
[ Thomas Günther ]
Modified: vdr/vdr-plugin-vcd/trunk/debian/patches/00list
===================================================================
--- vdr/vdr-plugin-vcd/trunk/debian/patches/00list 2007-01-18 21:32:31 UTC (rev 4080)
+++ vdr/vdr-plugin-vcd/trunk/debian/patches/00list 2007-01-18 21:34:51 UTC (rev 4081)
@@ -1,4 +1,5 @@
01_Makefile-fPIC-fix
02_vdr-1.3.38-fix
-90_APIVERSION.dpatch
+90_APIVERSION
+91_vcd-0.7-1.5.0
Added: vdr/vdr-plugin-vcd/trunk/debian/patches/91_vcd-0.7-1.5.0.dpatch
===================================================================
--- vdr/vdr-plugin-vcd/trunk/debian/patches/91_vcd-0.7-1.5.0.dpatch 2007-01-18 21:32:31 UTC (rev 4080)
+++ vdr/vdr-plugin-vcd/trunk/debian/patches/91_vcd-0.7-1.5.0.dpatch 2007-01-18 21:34:51 UTC (rev 4081)
@@ -0,0 +1,52 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 91_vcd-0.7-1.5.0.dpatch by Thomas Günther <tom at toms-cafe.de>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Changes for VDR >= 1.5.0.
+
+ at DPATCH@
+--- vcd-0.7/menucontrol.c
++++ vcd-0.7/menucontrol.c
+@@ -63,7 +63,12 @@
+ {
+ if (visible) {
+ delete displayReplay;
+- needsFastResponse = visible = false;
++#if APIVERSNUM >= 10500
++ SetNeedsFastResponse(false);
++#else
++ needsFastResponse = false;
++#endif
++ visible = false;
+ modeOnly = false;
+ }
+ }
+@@ -170,7 +175,12 @@
+ {
+ if (visible) {
+ delete displayReplay;
+- needsFastResponse = visible = false;
++#if APIVERSNUM >= 10500
++ SetNeedsFastResponse(false);
++#else
++ needsFastResponse = false;
++#endif
++ visible = false;
+ modeOnly = false;
+ lastPlay = lastForward = false;
+ lastSpeed = -1;
+@@ -210,7 +220,13 @@
+ if (GetIndex(Current, Total) && Total > 0) {
+ if (!visible) {
+ displayReplay = Skins.Current()->DisplayReplay(modeOnly);
+- needsFastResponse = visible = true;
++
++#if APIVERSNUM >= 10500
++ SetNeedsFastResponse(true);
++#else
++ needsFastResponse = true;
++#endif
++ visible = true;
+ }
+ if (Initial) {
+ lastCurrent = lastTotal = -1;
More information about the pkg-vdr-dvb-changes
mailing list