Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/museek+/files: museek+-0.1.13-gcc43.patch
Date: Wed, 30 Apr 2008 21:09:36
Message-Id: E1JrJYT-0000GB-RY@stork.gentoo.org
1 coldwind 08/04/30 21:09:33
2
3 Added: museek+-0.1.13-gcc43.patch
4 Log:
5 Fix missing dodir (bug #219007) and compatibility with gcc 4.3 (bug #219352). Remove old.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 net-p2p/museek+/files/museek+-0.1.13-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/museek+/files/museek+-0.1.13-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: museek+-0.1.13-gcc43.patch
15 ===================================================================
16 gcc-4.3 compatibility, by Belegdol.
17 http://www.museek-plus.org/changeset/743
18 --- /museek+/trunk/sources/Museek/Museek.cc
19 +++ /museek+/trunk/sources/Museek/Museek.cc
20 @@ -37,4 +37,5 @@
21 #include <queue>
22 #include <vector>
23 +#include <cstdlib>
24
25 using std::string;
26
27 --- /museek+/trunk/sources/Museek/DistribManager.cc
28 +++ /museek+/trunk/sources/Museek/DistribManager.cc
29 @@ -27,4 +27,6 @@
30 #define MULOG_DOMAIN "Museek.DM"
31 #include <Muhelp/Mulog.hh>
32 +
33 +#include <algorithm>
34
35 using std::vector;
36
37
38 --- /museek+/trunk/sources/Museek/PeerManager.hh
39 +++ /museek+/trunk/sources/Museek/PeerManager.hh
40 @@ -96,5 +96,5 @@
41 inline void set_uploading(Transfer* uploading) { mUploading = uploading; }
42
43 - void push_download(uint path, const std::wstring& path);
44 + void push_download(uint path1, const std::wstring& path);
45 void flush_downloads();
46
47
48
49 --- /museek+/trunk/sources/Museek/TransferManager.cc
50 +++ /museek+/trunk/sources/Museek/TransferManager.cc
51 @@ -37,4 +37,5 @@
52 #include <vector>
53 #include <iostream>
54 +#include <algorithm>
55
56 using std::string;
57
58
59 --- /museek+/trunk/sources/Museek/PeerManager.cc
60 +++ /museek+/trunk/sources/Museek/PeerManager.cc
61 @@ -33,4 +33,5 @@
62 #include <queue>
63 #include <vector>
64 +#include <algorithm>
65
66 using std::string;
67
68
69 --- /museek+/trunk/sources/Muhelp/string_ext.hh
70 +++ /museek+/trunk/sources/Muhelp/string_ext.hh
71 @@ -51,4 +51,5 @@
72 #include <vector>
73 #include <list>
74 +#include <cstdlib>
75
76 // Split a string into a list of strings
77
78
79 --- /museek+/trunk/sources/Muhelp/Mulog.cc
80 +++ /museek+/trunk/sources/Muhelp/Mulog.cc
81 @@ -20,4 +20,6 @@
82 #include <system.h>
83 #include <syslog.h>
84 +
85 +#include <cstdlib>
86
87 #include <Muhelp/Mulog.hh>
88
89
90 --- /museek+/trunk/sources/museekd/main.cc
91 +++ /museek+/trunk/sources/museekd/main.cc
92 @@ -26,4 +26,5 @@
93 #include <Muhelp/Mulog.hh>
94 #include <fstream>
95 +#include <cstdlib>
96
97 using std::string;
98
99
100 --- /museek+/trunk/sources/museekd/IfaceConnection.cc
101 +++ /museek+/trunk/sources/museekd/IfaceConnection.cc
102 @@ -29,4 +29,5 @@
103 #include <map>
104 #include <vector>
105 +#include <cstdlib>
106
107 #define MULOG_DOMAIN "museekd.IL"
108
109
110 --- /museek+/trunk/sources/Tools/muscan.cc
111 +++ /museek+/trunk/sources/Tools/muscan.cc
112 @@ -27,4 +27,5 @@
113
114 #include <iostream>
115 +#include <cstdlib>
116
117 using std::vector;
118
119
120 --- /museek+/trunk/sources/Tools/scanner.cc
121 +++ /museek+/trunk/sources/Tools/scanner.cc
122 @@ -19,4 +19,6 @@
123
124 #include <system.h>
125 +
126 +#include <cstdlib>
127
128 extern "C" {
129
130
131 --- /museek+/trunk/sources/Tools/muscand.cc
132 +++ /museek+/trunk/sources/Tools/muscand.cc
133 @@ -9,4 +9,6 @@
134
135 #include <iostream>
136 +#include <cstdlib>
137 +#include <algorithm>
138
139 using std::string;
140
141
142
143 --
144 gentoo-commits@l.g.o mailing list