Gentoo Archives: gentoo-commits

From: "Sven Wegener (swegener)" <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-nntp/nzbget/files: nzbget-0.4.0-gcc-4.3.patch
Date: Fri, 20 Jun 2008 20:48:51
Message-Id: E1K9nXJ-0006Wy-I0@stork.gentoo.org
1 swegener 08/06/20 20:48:45
2
3 Added: nzbget-0.4.0-gcc-4.3.patch
4 Log:
5 Add gcc-4.3 compability patch.
6 (Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc6-00232-g9bedbcb x86_64)
7
8 Revision Changes Path
9 1.1 net-nntp/nzbget/files/nzbget-0.4.0-gcc-4.3.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/nzbget/files/nzbget-0.4.0-gcc-4.3.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/nzbget/files/nzbget-0.4.0-gcc-4.3.patch?rev=1.1&content-type=text/plain
13
14 Index: nzbget-0.4.0-gcc-4.3.patch
15 ===================================================================
16 --- nzbget-0.4.0/ArticleDownloader.cpp
17 +++ nzbget-0.4.0/ArticleDownloader.cpp
18 @@ -42,6 +42,7 @@
19 #endif
20 #include <sys/stat.h>
21 #include <errno.h>
22 +#include <stdio.h>
23
24 #include "nzbget.h"
25 #include "ArticleDownloader.h"
26 --- nzbget-0.4.0/Connection.cpp
27 +++ nzbget-0.4.0/Connection.cpp
28 @@ -34,6 +34,7 @@
29
30 #include <stdlib.h>
31 #include <string.h>
32 +#include <stdio.h>
33 #ifndef WIN32
34 #include <netdb.h>
35 #include <unistd.h>
36 --- nzbget-0.4.0/DownloadInfo.cpp
37 +++ nzbget-0.4.0/DownloadInfo.cpp
38 @@ -34,6 +34,8 @@
39
40 #include <stdlib.h>
41 #include <string.h>
42 +#include <stdio.h>
43 +#include <ctype.h>
44 #include <sys/stat.h>
45
46 #include "nzbget.h"
47 --- nzbget-0.4.0/Log.cpp
48 +++ nzbget-0.4.0/Log.cpp
49 @@ -34,6 +34,7 @@
50
51 #include <stdlib.h>
52 #include <string.h>
53 +#include <stdio.h>
54 #include <sys/stat.h>
55 #include <stdarg.h>
56
57 --- nzbget-0.4.0/NNTPConnection.cpp
58 +++ nzbget-0.4.0/NNTPConnection.cpp
59 @@ -34,6 +34,7 @@
60
61 #include <stdlib.h>
62 #include <string.h>
63 +#include <stdio.h>
64
65 #include "nzbget.h"
66 #include "Log.h"
67 --- nzbget-0.4.0/Frontend.cpp
68 +++ nzbget-0.4.0/Frontend.cpp
69 @@ -34,6 +34,7 @@
70
71 #include <stdlib.h>
72 #include <string.h>
73 +#include <stdio.h>
74 #ifndef WIN32
75 #include <unistd.h>
76 #include <arpa/inet.h>
77 --- nzbget-0.4.0/PrePostProcessor.cpp
78 +++ nzbget-0.4.0/PrePostProcessor.cpp
79 @@ -34,6 +34,7 @@
80 #include <stdlib.h>
81 #include <string.h>
82 #include <ctype.h>
83 +#include <stdio.h>
84 #ifndef WIN32
85 #include <unistd.h>
86 #include <sys/wait.h>
87 --- nzbget-0.4.0/QueueEditor.cpp
88 +++ nzbget-0.4.0/QueueEditor.cpp
89 @@ -33,6 +33,8 @@
90
91 #include <stdlib.h>
92 #include <string.h>
93 +#include <stdio.h>
94 +#include <ctype.h>
95 #ifndef WIN32
96 #include <unistd.h>
97 #include <sys/time.h>
98 --- nzbget-0.4.0/RemoteClient.cpp
99 +++ nzbget-0.4.0/RemoteClient.cpp
100 @@ -34,6 +34,7 @@
101
102 #include <stdlib.h>
103 #include <string.h>
104 +#include <stdio.h>
105 #ifdef WIN32
106 #include <windows.h>
107 #else
108 --- nzbget-0.4.0/Options.cpp
109 +++ nzbget-0.4.0/Options.cpp
110 @@ -34,6 +34,7 @@
111
112 #include <stdlib.h>
113 #include <string.h>
114 +#include <stdio.h>
115 #include <sys/stat.h>
116 #ifdef WIN32
117 #include <direct.h>
118 --- nzbget-0.4.0/QueueCoordinator.cpp
119 +++ nzbget-0.4.0/QueueCoordinator.cpp
120 @@ -34,6 +34,7 @@
121
122 #include <stdlib.h>
123 #include <string.h>
124 +#include <stdio.h>
125 #include <sys/stat.h>
126 #ifndef WIN32
127 #include <unistd.h>
128 --- nzbget-0.4.0/BinRpc.cpp
129 +++ nzbget-0.4.0/BinRpc.cpp
130 @@ -34,6 +34,7 @@
131
132 #include <stdlib.h>
133 #include <string.h>
134 +#include <stdio.h>
135 #ifndef WIN32
136 #include <unistd.h>
137 #include <sys/socket.h>
138 --- nzbget-0.4.0/XmlRpc.cpp
139 +++ nzbget-0.4.0/XmlRpc.cpp
140 @@ -33,6 +33,7 @@
141
142 #include <stdlib.h>
143 #include <string.h>
144 +#include <stdio.h>
145 #ifndef WIN32
146 #include <unistd.h>
147 #include <sys/socket.h>
148
149
150
151 --
152 gentoo-commits@l.g.o mailing list