1 | Configure run on Mon Sep 5 18:37:45 UTC 2016
|
---|
2 | testing compiler: g++
|
---|
3 | success testing compiler: g++
|
---|
4 |
|
---|
5 | int main(void) {
|
---|
6 | #ifndef __GNUC__
|
---|
7 | syntax error
|
---|
8 | #endif
|
---|
9 | return 0;
|
---|
10 | }
|
---|
11 |
|
---|
12 | g++ -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -c
|
---|
13 | return code: 0
|
---|
14 |
|
---|
15 |
|
---|
16 | int main(void) { return 0; }
|
---|
17 |
|
---|
18 | g++ -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lm
|
---|
19 | return code: 0
|
---|
20 |
|
---|
21 |
|
---|
22 | #include <vorbis/codec.h>
|
---|
23 | int main(void) { vorbis_packet_blocksize(0,0); return 0; }
|
---|
24 |
|
---|
25 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lvorbisfile -lvorbis -logg
|
---|
26 | return code: 0
|
---|
27 |
|
---|
28 |
|
---|
29 | #include <tremor/ivorbiscodec.h>
|
---|
30 | int main(void) { vorbis_info_init(0); return 0; }
|
---|
31 |
|
---|
32 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lvorbisidec
|
---|
33 | ./scummvm-tools-conf.cpp:1:33: fatal error: tremor/ivorbiscodec.h: No such file or directory
|
---|
34 | #include <tremor/ivorbiscodec.h>
|
---|
35 | ^
|
---|
36 | compilation terminated.
|
---|
37 | return code: 1
|
---|
38 |
|
---|
39 |
|
---|
40 | #include <FLAC/format.h>
|
---|
41 | #include <FLAC/stream_encoder.h>
|
---|
42 | FLAC__StreamEncoderInitStatus x;
|
---|
43 | int main(void) { return FLAC__STREAM_SYNC_LEN >> 30; /* guaranteed to be 0 */ }
|
---|
44 |
|
---|
45 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lFLAC -logg
|
---|
46 | return code: 0
|
---|
47 |
|
---|
48 |
|
---|
49 | #include <mad.h>
|
---|
50 | int main(void) { return 0; }
|
---|
51 |
|
---|
52 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lmad
|
---|
53 | ./scummvm-tools-conf.cpp:1:17: fatal error: mad.h: No such file or directory
|
---|
54 | #include <mad.h>
|
---|
55 | ^
|
---|
56 | compilation terminated.
|
---|
57 | return code: 1
|
---|
58 |
|
---|
59 |
|
---|
60 | #include <png.h>
|
---|
61 | int main(void) {
|
---|
62 | #if PNG_LIBPNG_VER >= 10208
|
---|
63 | #else
|
---|
64 | syntax error
|
---|
65 | #endif
|
---|
66 | return 0;
|
---|
67 | }
|
---|
68 |
|
---|
69 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lpng
|
---|
70 | return code: 0
|
---|
71 |
|
---|
72 |
|
---|
73 | #include <string.h>
|
---|
74 | #include <zlib.h>
|
---|
75 | int main(void) { return strcmp(ZLIB_VERSION, zlibVersion()); }
|
---|
76 |
|
---|
77 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lz
|
---|
78 | return code: 0
|
---|
79 |
|
---|
80 |
|
---|
81 | #include <ft2build.h>
|
---|
82 | #include FT_FREETYPE_H
|
---|
83 |
|
---|
84 | int main(int argc, char *argv[]) {
|
---|
85 | FT_Library library;
|
---|
86 | FT_Error error = FT_Init_FreeType(&library);
|
---|
87 | FT_Done_FreeType(library);
|
---|
88 | }
|
---|
89 |
|
---|
90 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lfreetype -I/usr/include/freetype2
|
---|
91 | ./scummvm-tools-conf.cpp: In function 'int main(int, char**)':
|
---|
92 | ./scummvm-tools-conf.cpp:6:11: warning: unused variable 'error' [-Wunused-variable]
|
---|
93 | FT_Error error = FT_Init_FreeType(&library);
|
---|
94 | ^~~~~
|
---|
95 | return code: 0
|
---|
96 |
|
---|
97 |
|
---|
98 | #include <iostream>
|
---|
99 | #include <boost/version.hpp>
|
---|
100 | int main(void) { if (BOOST_VERSION < 103200) return 1; return 0; }
|
---|
101 |
|
---|
102 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf
|
---|
103 | return code: 0
|
---|
104 |
|
---|
105 |
|
---|
106 | #include <boost/program_options.hpp>
|
---|
107 | int main(void) { boost::program_options::options_description generic("Generic options"); return 0; }
|
---|
108 |
|
---|
109 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -lboost_program_options
|
---|
110 | return code: 0
|
---|
111 |
|
---|
112 |
|
---|
113 | #include <iconv.h>
|
---|
114 | int main(int, char **) {
|
---|
115 | return 0;
|
---|
116 | }
|
---|
117 |
|
---|
118 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf
|
---|
119 | return code: 0
|
---|
120 |
|
---|
121 |
|
---|
122 | #include <iconv.h>
|
---|
123 | int main(int, char **) {
|
---|
124 | iconv_t iconv = iconv_open("UTF-32", "SJIS");
|
---|
125 | iconv_close(iconv);
|
---|
126 | return 0;
|
---|
127 | }
|
---|
128 |
|
---|
129 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -liconv
|
---|
130 | /usr/lib64/gcc/x86_64-suse-linux/6/../../../../x86_64-suse-linux/bin/ld: cannot find -liconv
|
---|
131 | collect2: error: ld returned 1 exit status
|
---|
132 | return code: 1
|
---|
133 |
|
---|
134 |
|
---|
135 | #include <iconv.h>
|
---|
136 | int main(int, char **) {
|
---|
137 | iconv_t iconv = iconv_open("UTF-32", "SJIS");
|
---|
138 | iconv_close(iconv);
|
---|
139 | return 0;
|
---|
140 | }
|
---|
141 |
|
---|
142 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf
|
---|
143 | return code: 0
|
---|
144 |
|
---|
145 |
|
---|
146 | #include <iconv.h>
|
---|
147 | int main(int argc, char **argv) {
|
---|
148 | iconv_t iconvP;
|
---|
149 | const char **inbuf = 0;
|
---|
150 | iconv(iconvP, inbuf, 0, 0, 0);
|
---|
151 | return 0;
|
---|
152 | }
|
---|
153 |
|
---|
154 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf
|
---|
155 | ./scummvm-tools-conf.cpp: In function 'int main(int, char**)':
|
---|
156 | ./scummvm-tools-conf.cpp:5:30: error: invalid conversion from 'const char**' to 'char**' [-fpermissive]
|
---|
157 | iconv(iconvP, inbuf, 0, 0, 0);
|
---|
158 | ^
|
---|
159 | In file included from ./scummvm-tools-conf.cpp:1:0:
|
---|
160 | /usr/include/iconv.h:42:15: note: initializing argument 2 of 'size_t iconv(iconv_t, char**, size_t*, char**, size_t*)'
|
---|
161 | extern size_t iconv (iconv_t __cd, char **__restrict __inbuf,
|
---|
162 | ^~~~~
|
---|
163 | return code: 1
|
---|
164 |
|
---|
165 |
|
---|
166 | #include <wx/wx.h>
|
---|
167 |
|
---|
168 | class Foo : public wxFrame {
|
---|
169 | public:
|
---|
170 | Foo(const wxString& title) : wxFrame(NULL, wxID_ANY, title) {}
|
---|
171 | };
|
---|
172 |
|
---|
173 | class FooApp : public wxApp {
|
---|
174 | public:
|
---|
175 | virtual bool OnInit();
|
---|
176 | };
|
---|
177 |
|
---|
178 | IMPLEMENT_APP(FooApp)
|
---|
179 |
|
---|
180 | bool FooApp::OnInit() {
|
---|
181 | Foo *foo = new Foo(wxT("Foo"));
|
---|
182 | foo->Show(true);
|
---|
183 | return true;
|
---|
184 | }
|
---|
185 |
|
---|
186 | g++ -lm -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -g -g -ansi -W -Wno-unused-parameter -Wno-empty-body ./scummvm-tools-conf.cpp -o ./scummvm-tools-conf -I/usr/lib64/wx-2.8-stl/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -L/usr/lib64/wx-2.8-stl -pthread -Wl,-rpath,/usr/lib64/wx-2.8-stl -L/usr/lib64 -Wl,-rpath,/usr/lib64/wx-2.8-stl -lwx_gtk2u_richtext-2.8 -lwx_gtk2u_aui-2.8 -lwx_gtk2u_xrc-2.8 -lwx_gtk2u_qa-2.8 -lwx_gtk2u_html-2.8 -lwx_gtk2u_adv-2.8 -lwx_gtk2u_core-2.8 -lwx_baseu_xml-2.8 -lwx_baseu_net-2.8 -lwx_baseu-2.8
|
---|
187 | In file included from /usr/include/c++/6/unordered_map:35:0,
|
---|
188 | from /usr/include/wx-2.8/wx/hashmap.h:34,
|
---|
189 | from /usr/include/wx-2.8/wx/wx.h:21,
|
---|
190 | from ./scummvm-tools-conf.cpp:1:
|
---|
191 | /usr/include/c++/6/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
|
---|
192 | #error This file requires compiler and library support \
|
---|
193 | ^~~~~
|
---|
194 | In file included from /usr/include/wx-2.8/wx/wx.h:21:0,
|
---|
195 | from ./scummvm-tools-conf.cpp:1:
|
---|
196 | /usr/include/wx-2.8/wx/hashmap.h:483:28: error: 'hash' in namespace 'std' does not name a template type
|
---|
197 | WX_HASH_MAP_NAMESPACE::hash<long> longHash;
|
---|
198 | ^~~~
|
---|
199 | /usr/include/wx-2.8/wx/hashmap.h:484:28: error: 'hash' in namespace 'std' does not name a template type
|
---|
200 | WX_HASH_MAP_NAMESPACE::hash<unsigned long> ulongHash;
|
---|
201 | ^~~~
|
---|
202 | /usr/include/wx-2.8/wx/hashmap.h:485:28: error: 'hash' in namespace 'std' does not name a template type
|
---|
203 | WX_HASH_MAP_NAMESPACE::hash<int> intHash;
|
---|
204 | ^~~~
|
---|
205 | /usr/include/wx-2.8/wx/hashmap.h:486:28: error: 'hash' in namespace 'std' does not name a template type
|
---|
206 | WX_HASH_MAP_NAMESPACE::hash<unsigned int> uintHash;
|
---|
207 | ^~~~
|
---|
208 | /usr/include/wx-2.8/wx/hashmap.h:487:28: error: 'hash' in namespace 'std' does not name a template type
|
---|
209 | WX_HASH_MAP_NAMESPACE::hash<short> shortHash;
|
---|
210 | ^~~~
|
---|
211 | /usr/include/wx-2.8/wx/hashmap.h:488:28: error: 'hash' in namespace 'std' does not name a template type
|
---|
212 | WX_HASH_MAP_NAMESPACE::hash<unsigned short> ushortHash;
|
---|
213 | ^~~~
|
---|
214 | /usr/include/wx-2.8/wx/hashmap.h:500:28: error: 'hash' in namespace 'std' does not name a template type
|
---|
215 | WX_HASH_MAP_NAMESPACE::hash<long> longlongHash;
|
---|
216 | ^~~~
|
---|
217 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(long int) const':
|
---|
218 | /usr/include/wx-2.8/wx/hashmap.h:508:60: error: 'longHash' was not declared in this scope
|
---|
219 | size_t operator()( long x ) const { return longHash( x ); }
|
---|
220 | ^
|
---|
221 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(long unsigned int) const':
|
---|
222 | /usr/include/wx-2.8/wx/hashmap.h:509:70: error: 'ulongHash' was not declared in this scope
|
---|
223 | size_t operator()( unsigned long x ) const { return ulongHash( x ); }
|
---|
224 | ^
|
---|
225 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(int) const':
|
---|
226 | /usr/include/wx-2.8/wx/hashmap.h:510:58: error: 'intHash' was not declared in this scope
|
---|
227 | size_t operator()( int x ) const { return intHash( x ); }
|
---|
228 | ^
|
---|
229 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(unsigned int) const':
|
---|
230 | /usr/include/wx-2.8/wx/hashmap.h:511:68: error: 'uintHash' was not declared in this scope
|
---|
231 | size_t operator()( unsigned int x ) const { return uintHash( x ); }
|
---|
232 | ^
|
---|
233 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(short int) const':
|
---|
234 | /usr/include/wx-2.8/wx/hashmap.h:512:62: error: 'shortHash' was not declared in this scope
|
---|
235 | size_t operator()( short x ) const { return shortHash( x ); }
|
---|
236 | ^
|
---|
237 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(short unsigned int) const':
|
---|
238 | /usr/include/wx-2.8/wx/hashmap.h:513:72: error: 'ushortHash' was not declared in this scope
|
---|
239 | size_t operator()( unsigned short x ) const { return ushortHash( x ); }
|
---|
240 | ^
|
---|
241 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(long long int) const':
|
---|
242 | /usr/include/wx-2.8/wx/hashmap.h:515:70: error: 'longlongHash' was not declared in this scope
|
---|
243 | size_t operator()( wxLongLong_t x ) const { return longlongHash(x); }
|
---|
244 | ^
|
---|
245 | /usr/include/wx-2.8/wx/hashmap.h: In member function 'size_t wxIntegerHash::operator()(long long unsigned int) const':
|
---|
246 | /usr/include/wx-2.8/wx/hashmap.h:516:71: error: 'longlongHash' was not declared in this scope
|
---|
247 | size_t operator()( wxULongLong_t x ) const { return longlongHash(x); }
|
---|
248 | ^
|
---|
249 | In file included from /usr/include/wx-2.8/wx/wx.h:21:0,
|
---|
250 | from ./scummvm-tools-conf.cpp:1:
|
---|
251 | /usr/include/wx-2.8/wx/hashmap.h: At global scope:
|
---|
252 | /usr/include/wx-2.8/wx/hashmap.h:42:36: error: 'unordered_map' in namespace 'std' does not name a template type
|
---|
253 | typedef WX_HASH_MAP_NAMESPACE::unordered_map< KEY_T, VALUE_T, HASH_T, KEY_EQ_T > CLASSNAME
|
---|
254 | ^
|
---|
255 | /usr/include/wx-2.8/wx/hashmap.h:696:5: note: in expansion of macro '_WX_DECLARE_HASH_MAP'
|
---|
256 | _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, DECL )
|
---|
257 | ^~~~~~~~~~~~~~~~~~~~
|
---|
258 | /usr/include/wx-2.8/wx/hashmap.h:735:1: note: in expansion of macro 'WX_DECLARE_HASH_MAP_WITH_DECL'
|
---|
259 | WX_DECLARE_HASH_MAP_WITH_DECL( long, long, wxIntegerHash, wxIntegerEqual,
|
---|
260 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
261 | /usr/include/wx-2.8/wx/hashmap.h:42:36: error: 'unordered_map' in namespace 'std' does not name a template type
|
---|
262 | typedef WX_HASH_MAP_NAMESPACE::unordered_map< KEY_T, VALUE_T, HASH_T, KEY_EQ_T > CLASSNAME
|
---|
263 | ^
|
---|
264 | /usr/include/wx-2.8/wx/hashmap.h:703:5: note: in expansion of macro '_WX_DECLARE_HASH_MAP'
|
---|
265 | _WX_DECLARE_HASH_MAP( wxString, VALUE_T, wxStringHash, wxStringEqual, \
|
---|
266 | ^~~~~~~~~~~~~~~~~~~~
|
---|
267 | /usr/include/wx-2.8/wx/clntdata.h:20:1: note: in expansion of macro 'WX_DECLARE_STRING_HASH_MAP_WITH_DECL'
|
---|
268 | WX_DECLARE_STRING_HASH_MAP_WITH_DECL(
|
---|
269 | ^
|
---|
270 | /usr/include/wx-2.8/wx/hashmap.h:42:36: error: 'unordered_map' in namespace 'std' does not name a template type
|
---|
271 | typedef WX_HASH_MAP_NAMESPACE::unordered_map< KEY_T, VALUE_T, HASH_T, KEY_EQ_T > CLASSNAME
|
---|
272 | ^
|
---|
273 | /usr/include/wx-2.8/wx/hashmap.h:703:5: note: in expansion of macro '_WX_DECLARE_HASH_MAP'
|
---|
274 | _WX_DECLARE_HASH_MAP( wxString, VALUE_T, wxStringHash, wxStringEqual, \
|
---|
275 | ^~~~~~~~~~~~~~~~~~~~
|
---|
276 | /usr/include/wx-2.8/wx/clntdata.h:25:1: note: in expansion of macro 'WX_DECLARE_STRING_HASH_MAP_WITH_DECL'
|
---|
277 | WX_DECLARE_STRING_HASH_MAP_WITH_DECL(
|
---|
278 | ^
|
---|
279 | In file included from /usr/include/wx-2.8/wx/event.h:18:0,
|
---|
280 | from /usr/include/wx-2.8/wx/wx.h:25,
|
---|
281 | from ./scummvm-tools-conf.cpp:1:
|
---|
282 | /usr/include/wx-2.8/wx/clntdata.h:83:5: error: 'wxShadowObjectMethods' does not name a type
|
---|
283 | wxShadowObjectMethods m_methods;
|
---|
284 | ^~~~~~~~~~~~~~~~~~~~~
|
---|
285 | /usr/include/wx-2.8/wx/clntdata.h:84:5: error: 'wxShadowObjectFields' does not name a type
|
---|
286 | wxShadowObjectFields m_fields;
|
---|
287 | ^~~~~~~~~~~~~~~~~~~~
|
---|
288 | /usr/include/wx-2.8/wx/clntdata.h: In member function 'void wxShadowObject::AddMethod(const wxString&, wxShadowObjectMethod)':
|
---|
289 | /usr/include/wx-2.8/wx/clntdata.h:38:9: error: 'wxShadowObjectMethods' has not been declared
|
---|
290 | wxShadowObjectMethods::iterator it = m_methods.find( name );
|
---|
291 | ^~~~~~~~~~~~~~~~~~~~~
|
---|
292 | /usr/include/wx-2.8/wx/clntdata.h:39:13: error: 'it' was not declared in this scope
|
---|
293 | if (it == m_methods.end())
|
---|
294 | ^~
|
---|
295 | /usr/include/wx-2.8/wx/clntdata.h:39:19: error: 'm_methods' was not declared in this scope
|
---|
296 | if (it == m_methods.end())
|
---|
297 | ^~~~~~~~~
|
---|
298 | /usr/include/wx-2.8/wx/clntdata.h: In member function 'bool wxShadowObject::InvokeMethod(const wxString&, void*, void*, int*)':
|
---|
299 | /usr/include/wx-2.8/wx/clntdata.h:47:9: error: 'wxShadowObjectMethods' has not been declared
|
---|
300 | wxShadowObjectMethods::iterator it = m_methods.find( name );
|
---|
301 | ^~~~~~~~~~~~~~~~~~~~~
|
---|
302 | /usr/include/wx-2.8/wx/clntdata.h:48:13: error: 'it' was not declared in this scope
|
---|
303 | if (it == m_methods.end())
|
---|
304 | ^~
|
---|
305 | /usr/include/wx-2.8/wx/clntdata.h:48:19: error: 'm_methods' was not declared in this scope
|
---|
306 | if (it == m_methods.end())
|
---|
307 | ^~~~~~~~~
|
---|
308 | /usr/include/wx-2.8/wx/clntdata.h:50:39: error: 'it' was not declared in this scope
|
---|
309 | wxShadowObjectMethod method = it->second;
|
---|
310 | ^~
|
---|
311 | /usr/include/wx-2.8/wx/clntdata.h: In member function 'void wxShadowObject::AddField(const wxString&, void*)':
|
---|
312 | /usr/include/wx-2.8/wx/clntdata.h:59:9: error: 'wxShadowObjectFields' has not been declared
|
---|
313 | wxShadowObjectFields::iterator it = m_fields.find( name );
|
---|
314 | ^~~~~~~~~~~~~~~~~~~~
|
---|
315 | /usr/include/wx-2.8/wx/clntdata.h:60:13: error: 'it' was not declared in this scope
|
---|
316 | if (it == m_fields.end())
|
---|
317 | ^~
|
---|
318 | /usr/include/wx-2.8/wx/clntdata.h:60:19: error: 'm_fields' was not declared in this scope
|
---|
319 | if (it == m_fields.end())
|
---|
320 | ^~~~~~~~
|
---|
321 | /usr/include/wx-2.8/wx/clntdata.h: In member function 'void wxShadowObject::SetField(const wxString&, void*)':
|
---|
322 | /usr/include/wx-2.8/wx/clntdata.h:68:9: error: 'wxShadowObjectFields' has not been declared
|
---|
323 | wxShadowObjectFields::iterator it = m_fields.find( name );
|
---|
324 | ^~~~~~~~~~~~~~~~~~~~
|
---|
325 | /usr/include/wx-2.8/wx/clntdata.h:69:13: error: 'it' was not declared in this scope
|
---|
326 | if (it == m_fields.end())
|
---|
327 | ^~
|
---|
328 | /usr/include/wx-2.8/wx/clntdata.h:69:19: error: 'm_fields' was not declared in this scope
|
---|
329 | if (it == m_fields.end())
|
---|
330 | ^~~~~~~~
|
---|
331 | /usr/include/wx-2.8/wx/clntdata.h:71:9: error: 'it' was not declared in this scope
|
---|
332 | it->second = value;
|
---|
333 | ^~
|
---|
334 | /usr/include/wx-2.8/wx/clntdata.h: In member function 'void* wxShadowObject::GetField(const wxString&, void*)':
|
---|
335 | /usr/include/wx-2.8/wx/clntdata.h:76:9: error: 'wxShadowObjectFields' has not been declared
|
---|
336 | wxShadowObjectFields::iterator it = m_fields.find( name );
|
---|
337 | ^~~~~~~~~~~~~~~~~~~~
|
---|
338 | /usr/include/wx-2.8/wx/clntdata.h:77:13: error: 'it' was not declared in this scope
|
---|
339 | if (it == m_fields.end())
|
---|
340 | ^~
|
---|
341 | /usr/include/wx-2.8/wx/clntdata.h:77:19: error: 'm_fields' was not declared in this scope
|
---|
342 | if (it == m_fields.end())
|
---|
343 | ^~~~~~~~
|
---|
344 | /usr/include/wx-2.8/wx/clntdata.h:79:16: error: 'it' was not declared in this scope
|
---|
345 | return it->second;
|
---|
346 | ^~
|
---|
347 | In file included from /usr/include/wx-2.8/wx/wx.h:21:0,
|
---|
348 | from ./scummvm-tools-conf.cpp:1:
|
---|
349 | /usr/include/wx-2.8/wx/gdicmn.h: At global scope:
|
---|
350 | /usr/include/wx-2.8/wx/hashmap.h:42:36: error: 'unordered_map' in namespace 'std' does not name a template type
|
---|
351 | typedef WX_HASH_MAP_NAMESPACE::unordered_map< KEY_T, VALUE_T, HASH_T, KEY_EQ_T > CLASSNAME
|
---|
352 | ^
|
---|
353 | /usr/include/wx-2.8/wx/hashmap.h:686:5: note: in expansion of macro '_WX_DECLARE_HASH_MAP'
|
---|
354 | _WX_DECLARE_HASH_MAP( wxString, VALUE_T, wxStringHash, wxStringEqual, \
|
---|
355 | ^~~~~~~~~~~~~~~~~~~~
|
---|
356 | /usr/include/wx-2.8/wx/gdicmn.h:544:1: note: in expansion of macro 'WX_DECLARE_STRING_HASH_MAP'
|
---|
357 | WX_DECLARE_STRING_HASH_MAP(wxColour*, wxStringToColourHashMap);
|
---|
358 | ^~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
359 | In file included from /usr/include/wx-2.8/wx/event.h:21:0,
|
---|
360 | from /usr/include/wx-2.8/wx/wx.h:25,
|
---|
361 | from ./scummvm-tools-conf.cpp:1:
|
---|
362 | /usr/include/wx-2.8/wx/gdicmn.h:576:5: error: 'wxStringToColourHashMap' does not name a type
|
---|
363 | wxStringToColourHashMap *m_map;
|
---|
364 | ^~~~~~~~~~~~~~~~~~~~~~~
|
---|
365 | In file included from /usr/include/wx-2.8/wx/wx.h:21:0,
|
---|
366 | from ./scummvm-tools-conf.cpp:1:
|
---|
367 | /usr/include/wx-2.8/wx/hashmap.h:42:36: error: 'unordered_map' in namespace 'std' does not name a template type
|
---|
368 | typedef WX_HASH_MAP_NAMESPACE::unordered_map< KEY_T, VALUE_T, HASH_T, KEY_EQ_T > CLASSNAME
|
---|
369 | ^
|
---|
370 | /usr/include/wx-2.8/wx/hashmap.h:696:5: note: in expansion of macro '_WX_DECLARE_HASH_MAP'
|
---|
371 | _WX_DECLARE_HASH_MAP( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, CLASSNAME, DECL )
|
---|
372 | ^~~~~~~~~~~~~~~~~~~~
|
---|
373 | /usr/include/wx-2.8/wx/hashmap.h:699:5: note: in expansion of macro 'WX_DECLARE_HASH_MAP_WITH_DECL'
|
---|
374 | WX_DECLARE_HASH_MAP_WITH_DECL( KEY_T, VALUE_T, HASH_T, KEY_EQ_T, \
|
---|
375 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
376 | /usr/include/wx-2.8/wx/image.h:136:1: note: in expansion of macro 'WX_DECLARE_EXPORTED_HASH_MAP'
|
---|
377 | WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry,
|
---|
378 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
379 | In file included from /usr/include/wx-2.8/wx/wx.h:45:0,
|
---|
380 | from ./scummvm-tools-conf.cpp:1:
|
---|
381 | /usr/include/wx-2.8/wx/image.h:141:1: error: expected class-name before '{' token
|
---|
382 | {
|
---|
383 | ^
|
---|
384 | /usr/include/wx-2.8/wx/image.h: In constructor 'wxImageHistogram::wxImageHistogram()':
|
---|
385 | /usr/include/wx-2.8/wx/image.h:143:26: error: class 'wxImageHistogram' does not have any field named 'wxImageHistogramBase'
|
---|
386 | wxImageHistogram() : wxImageHistogramBase(256) { }
|
---|
387 | ^~~~~~~~~~~~~~~~~~~~
|
---|
388 | return code: 1
|
---|
389 |
|
---|