updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / vdr-burn / 96_gcc4.3-includes.dpatch
blob9c06ecd186987b3482eddaf1e101f854ba7f41d9
1 #! /bin/sh /usr/share/dpatch/dpatch-run
2 ## 96_gcc4.3-includes.dpatch by Tobias Grimm <tg@e-tobi.net>
3 ##
4 ## All lines beginning with `## DP:' are a description of the patch.
5 ## DP: Fixes FTBFS for GCC 4.3.
7 @DPATCH@
8 diff -urNad vdr-plugin-burn-0.1.0~pre21~/adaptor.h vdr-plugin-burn-0.1.0~pre21/adaptor.h
9 --- vdr-plugin-burn-0.1.0~pre21~/adaptor.h 2006-09-16 20:33:36.000000000 +0200
10 +++ vdr-plugin-burn-0.1.0~pre21/adaptor.h 2008-06-10 20:08:12.000000000 +0200
11 @@ -11,6 +11,7 @@
12 #include <iterator>
13 #include <vdr/epg.h>
14 #include <vdr/tools.h>
15 +#include <algorithm>
17 namespace vdr_burn
19 diff -urNad vdr-plugin-burn-0.1.0~pre21~/filter.h vdr-plugin-burn-0.1.0~pre21/filter.h
20 --- vdr-plugin-burn-0.1.0~pre21~/filter.h 2006-09-16 20:33:36.000000000 +0200
21 +++ vdr-plugin-burn-0.1.0~pre21/filter.h 2008-06-10 20:08:12.000000000 +0200
22 @@ -10,6 +10,7 @@
24 #include "common.h"
25 #include <iterator>
26 +#include <algorithm>
28 namespace vdr_burn
30 diff -urNad vdr-plugin-burn-0.1.0~pre21~/iconvwrapper.c vdr-plugin-burn-0.1.0~pre21/iconvwrapper.c
31 --- vdr-plugin-burn-0.1.0~pre21~/iconvwrapper.c 2006-09-16 20:33:36.000000000 +0200
32 +++ vdr-plugin-burn-0.1.0~pre21/iconvwrapper.c 2008-06-10 20:08:12.000000000 +0200
33 @@ -8,6 +8,8 @@
34 #include "iconvwrapper.h"
35 #include <cerrno>
36 #include <sstream>
37 +#include <string.h>
38 +#include <stdlib.h>
40 namespace iconvwrapper
42 diff -urNad vdr-plugin-burn-0.1.0~pre21~/menuburn.h vdr-plugin-burn-0.1.0~pre21/menuburn.h
43 --- vdr-plugin-burn-0.1.0~pre21~/menuburn.h 2006-09-16 20:33:36.000000000 +0200
44 +++ vdr-plugin-burn-0.1.0~pre21/menuburn.h 2008-06-10 20:08:12.000000000 +0200
45 @@ -14,6 +14,7 @@
46 #include <utility>
47 #include <string>
48 #include <vdr/menuitems.h>
49 +#include <limits>
51 class cRecording;
53 diff -urNad vdr-plugin-burn-0.1.0~pre21~/menuitems.h vdr-plugin-burn-0.1.0~pre21/menuitems.h
54 --- vdr-plugin-burn-0.1.0~pre21~/menuitems.h 2006-09-16 20:33:36.000000000 +0200
55 +++ vdr-plugin-burn-0.1.0~pre21/menuitems.h 2008-06-10 20:08:12.000000000 +0200
56 @@ -20,6 +20,7 @@
57 #include <vector>
58 #include "boost/bind.hpp"
59 #include <vdr/menuitems.h>
60 +#include <limits>
62 namespace vdr_burn {
63 namespace menu {
64 diff -urNad vdr-plugin-burn-0.1.0~pre21~/proctools/logger.cc vdr-plugin-burn-0.1.0~pre21/proctools/logger.cc
65 --- vdr-plugin-burn-0.1.0~pre21~/proctools/logger.cc 2006-09-16 17:22:02.000000000 +0200
66 +++ vdr-plugin-burn-0.1.0~pre21/proctools/logger.cc 2008-06-10 20:08:12.000000000 +0200
67 @@ -6,6 +6,7 @@
68 #include <sstream>
69 #include <algorithm>
70 #include <cerrno>
71 +#include <string.h>
73 namespace proctools