summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2021-02-02 18:00:32 +0100
committerConrad Kostecki <conikost@gentoo.org>2021-02-02 22:38:29 +0100
commit180feae36daca72757a0cad01df30c677724e9a6 (patch)
tree4071cd38d333a7ef7ab40ec32b42f41eb38c14da /media-plugins
parentnet-misc/memcached: remove unused patch (diff)
downloadgentoo-180feae36daca72757a0cad01df30c677724e9a6.tar.gz
gentoo-180feae36daca72757a0cad01df30c677724e9a6.tar.bz2
gentoo-180feae36daca72757a0cad01df30c677724e9a6.zip
media-plugins/vdr-systeminfo: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/19308 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r--media-plugins/vdr-systeminfo/files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch69
1 files changed, 0 insertions, 69 deletions
diff --git a/media-plugins/vdr-systeminfo/files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch b/media-plugins/vdr-systeminfo/files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch
deleted file mode 100644
index 4cadb0bc285b..000000000000
--- a/media-plugins/vdr-systeminfo/files/vdr-systeminfo-0.1.3_vdr-2.3.1.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-compilefix vdr-2.3.1
-http://www.vdr-portal.de/board1-news/board2-vdr-news/p1254237-announce-vdr-developer-version-2-3-1/#post1254237
-Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (25 Okt 2015)
-
---- displayinfo.c 2008-11-09 10:31:23.000000000 +0100
-+++ displayinfo.c 2015-10-14 16:18:28.328868172 +0200
-@@ -224,7 +224,7 @@
- void cInfoLines::Action()
- {
- int line = 0;
-- Lock();
-+ cThread::Lock();
- Clear();
- Unlock();
- cString osdline = NULL;
-@@ -236,7 +236,7 @@
-
- osdline = PrepareInfoline(++line, &isStatic);
- if ((const char*)osdline) {
-- Lock();
-+ cThread::Lock();
- Add(new cInfoLine(osdline, isStatic));
- Unlock();
- }
-@@ -244,7 +244,7 @@
- while (Running() && NULL != (const char*)osdline && line <= MAX_LINES);
-
- if (!First()) {
-- Lock();
-+ cThread::Lock();
- osdline = tr("Error getting system information");
- Add(new cInfoLine(osdline, true));
- state++;
-@@ -252,7 +252,7 @@
- }
- else
- {
-- Lock();
-+ cThread::Lock();
- state++;
- Unlock();
- if (Running())
-@@ -260,7 +260,7 @@
-
- while (Running()) {
- cInfoLine * currentline = NULL;
-- Lock();
-+ cThread::Lock();
- if (OsdInitialized)
- firstDisplay = false;
- currentline = First();
-@@ -274,7 +274,7 @@
- if (!currentline || !currentline->isStatic()) {
- osdline = PrepareInfoline(line, &isStatic);
- if ((const char*)osdline) {
-- Lock();
-+ cThread::Lock();
- currentline->SetStr(osdline);
- Unlock();
- }
-@@ -283,7 +283,7 @@
- }
- while (Running() && NULL != currentline && line <= MAX_LINES);
-
-- Lock();
-+ cThread::Lock();
- state++;
- Unlock();
-