From patchwork Tue Apr 8 18:47:51 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Ville_Skytt=C3=A4?= X-Patchwork-Id: 12644 Received: from smtp5.pp.htv.fi ([213.243.153.39]) by www.linuxtv.org with esmtp (Exim 4.63) (envelope-from ) id 1JjIrM-0001cn-AR for vdr@linuxtv.org; Tue, 08 Apr 2008 20:48:01 +0200 Received: from viper.bobcat.mine.nu (cs181065188.pp.htv.fi [82.181.65.188]) by smtp5.pp.htv.fi (Postfix) with ESMTP id AB7165BC05B; Tue, 8 Apr 2008 21:47:52 +0300 (EEST) From: Ville =?iso-8859-1?q?Skytt=E4?= To: Sascha Volkenandt Date: Tue, 8 Apr 2008 21:47:51 +0300 User-Agent: KMail/1.9.9 MIME-Version: 1.0 Message-Id: <200804082147.52215.ville.skytta@iki.fi> X-LSpam-Score: -1.9 (-) X-LSpam-Report: No, score=-1.9 required=5.0 tests=AWL=0.650, BAYES_00=-2.599 autolearn=ham Cc: VDR Mailing List Subject: [vdr] vdr-burn gcc 4.3 build fix X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.9 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: Tue, 08 Apr 2008 18:48:01 -0000 Status: O X-Status: X-Keywords: X-UID: 16384 Hi, The attached patch fixes build of vdr-burn (current CVS HEAD) with gcc 4.3's cleaned up C++ headers. Index: adaptor.h =================================================================== RCS file: /var/cvsroot/burn/adaptor.h,v retrieving revision 1.4 diff -u -r1.4 adaptor.h --- adaptor.h 16 Sep 2006 18:33:36 -0000 1.4 +++ adaptor.h 8 Apr 2008 18:40:42 -0000 @@ -8,6 +8,7 @@ #ifndef VDR_BURN_ADAPTOR_H #define VDR_BURN_ADAPTOR_H +#include #include #include #include Index: filter.h =================================================================== RCS file: /var/cvsroot/burn/filter.h,v retrieving revision 1.5 diff -u -r1.5 filter.h --- filter.h 16 Sep 2006 18:33:36 -0000 1.5 +++ filter.h 8 Apr 2008 18:40:42 -0000 @@ -9,6 +9,7 @@ #define VDR_BURN_FILTER_H #include "common.h" +#include #include namespace vdr_burn Index: iconvwrapper.c =================================================================== RCS file: /var/cvsroot/burn/iconvwrapper.c,v retrieving revision 1.3 diff -u -r1.3 iconvwrapper.c --- iconvwrapper.c 16 Sep 2006 18:33:36 -0000 1.3 +++ iconvwrapper.c 8 Apr 2008 18:40:42 -0000 @@ -7,6 +7,8 @@ #include "iconvwrapper.h" #include +#include +#include #include namespace iconvwrapper Index: menuitems.h =================================================================== RCS file: /var/cvsroot/burn/menuitems.h,v retrieving revision 1.15 diff -u -r1.15 menuitems.h --- menuitems.h 19 Sep 2006 18:51:35 -0000 1.15 +++ menuitems.h 8 Apr 2008 18:40:42 -0000 @@ -14,6 +14,7 @@ #include "tracks.h" #include #include +#include #include #include #include Index: proctools/logger.cc =================================================================== RCS file: /var/cvsroot/burn/proctools/logger.cc,v retrieving revision 1.3 diff -u -r1.3 logger.cc --- proctools/logger.cc 16 Sep 2006 18:33:38 -0000 1.3 +++ proctools/logger.cc 8 Apr 2008 18:40:42 -0000 @@ -6,6 +6,7 @@ #include #include #include +#include namespace proctools {