You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-plugins/vdr-scheduler/files/vdr-2.3.5_compat.patch

18 lines
424 B

Description: Fix FTBS with VDR >=2.3.5
Origin: http://www.minidvblinux.de/git/?a=commit&p=vdr-plugin-scheduler&h=25981073415e8c74dd5ebe3f7d9d9a9407665f6a
Author: Andreas McPherson <megax@minidvblinux.de>
--- a/task.h
+++ b/task.h
@@ -94,6 +94,11 @@
public:
+ cTask& operator= (const cTask &Task)
+ {
+ return *this;
+ };
+
cTask(void);
cTask(const char* Name, const char* Cmd, int AnnounceMode = 0);