From patchwork Thu Nov 25 12:26:47 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: martinez@embl.de X-Patchwork-Id: 12843 Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.69) (envelope-from ) id 1PLasp-0004IN-Fy for vdr@linuxtv.org; Thu, 25 Nov 2010 13:25:04 +0100 X-tubIT-Incoming-IP: 194.94.44.228 Received: from ironport2.embl.de ([194.94.44.228]) by mail.tu-berlin.de (exim-4.69/mailfrontend-b) with esmtp for id 1PLasp-0004Hm-6w; Thu, 25 Nov 2010 13:25:03 +0100 X-IronPort-AV: E=Sophos;i="4.59,253,1288566000"; d="scan'208";a="3017798" Received: from lxmail01-vm.embl.de (HELO mail.embl.de) ([10.1.1.220]) by ironport2.embl.de with ESMTP; 25 Nov 2010 13:25:02 +0100 Received: (qmail 24113 invoked by uid 107); 25 Nov 2010 12:25:02 -0000 Received: from unknown (HELO ?10.11.108.37?) (martinez@10.11.108.37) by lxmail01-vm.embl.de with ESMTPA; 25 Nov 2010 12:25:02 -0000 Message-ID: <4CEE5607.1050407@embl.de> Date: Thu, 25 Nov 2010 13:26:47 +0100 From: Arturo Martinez User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.15) Gecko/20101027 Thunderbird/3.0.10 MIME-Version: 1.0 To: vdr@linuxtv.org X-PMX-Version: 5.5.4.371499, Antispam-Engine: 2.7.1.369594, Antispam-Data: 2010.11.25.121818 X-PMX-Spam: Gauge=IIIIIIII, Probability=8%, Report=' MIME_TEXT_ONLY_MP_MIXED 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_2000_2999 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, __BAT_BOUNDARY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __CTYPE_MULTIPART_MIXED 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __MOZILLA_MSGID 0, __SANE_MSGID 0, __TO_MALFORMED_2 0, __TO_NO_NAME 0, __URI_NO_PATH 0, __URI_NO_WWW 0, __USER_AGENT 0' X-LSpam-Score: -3.3 (---) X-LSpam-Report: No, score=-3.3 required=5.0 tests=AWL=0.326, BAYES_00=-2.599, RCVD_IN_DNSWL_LOW=-1 autolearn=ham Subject: [vdr] eepg 0.3 patch X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Nov 2010 12:25:04 -0000 Status: O X-Status: X-Keywords: X-UID: 23904 If the eepg plugin does not compile for you with current headers (2.6.34 or newer) this mini patch will fix it. Thanks to Alain Beckam for spotting the problem, I just made the diff file. // originally from libdtv, Copyright Rolf Hakenes @@ -2773,7 +2773,7 @@ } #endif /* NOEPG */ - cEIT2::cEIT2 (cSchedules::cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, bool OnlyRunningStatus) + cEIT2::cEIT2 (cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, bool OnlyRunningStatus) : SI::EIT (Data, false) { if (!CheckCRCAndParse ()) return; --- eepg.c.ori 2010-09-01 15:43:56.000000000 +0200 +++ eepg.c 2010-09-01 15:45:02.000000000 +0200 @@ -2684,7 +2684,7 @@ class cEIT2:public SI::EIT { public: - cEIT2 (cSchedules::cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, + cEIT2 (cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, bool OnlyRunningStatus = false);