I'm still trying to get a clean compilation of fltk2 on the playstation2. Switching compilers (the default is 2.95.2 IIRC) to the slightly experimental package of gcc3.0.3 has allowed me to get everything to compile 'as is' apart from run.cxx, which give the following 'error' In file included from x11/run.cxx:55, from run.cxx:185: x11/xutf8.cxx: In function `int Xutf8LookupString(_XIC*, XKeyPressedEvent*, char*, int, KeySym*, int*)': x11/xutf8.cxx:901: cannot convert `const char**' to `char**' for argument `2' to `size_t iconv(void*, char**, size_t*, char**, size_t*)' make[1]: *** [run.o] Error 1 make: *** [all] Error 2 Any advice?? -- robert w hall
On Thu, Apr 06, 2006 at 09:00:24AM +0100, robert w hall wrote:
I'm still trying to get a clean compilation of fltk2 on the playstation2.
Any advice??
Um, ask the FLTK developers? http://www.fltk.org/newsgroups.php http://lists.easysw.com/mailman/listinfo Jeremy Henty
On Thu, Apr 06, 2006 at 09:00:24AM +0100, robert w hall wrote:
I'm still trying to get a clean compilation of fltk2 on the playstation2.
Switching compilers (the default is 2.95.2 IIRC) to the slightly experimental package of gcc3.0.3 has allowed me to get everything to compile 'as is' apart from run.cxx, which give the following 'error'
In file included from x11/run.cxx:55, from run.cxx:185: x11/xutf8.cxx: In function `int Xutf8LookupString(_XIC*, XKeyPressedEvent*, char*, int, KeySym*, int*)': x11/xutf8.cxx:901: cannot convert `const char**' to `char**' for argument `2' to `size_t iconv(void*, char**, size_t*, char**, size_t*)' make[1]: *** [run.o] Error 1 make: *** [all] Error 2
Any advice??
Yes, try in xutf8.cxx:897 - const char* inbuf = mb_buffer; + char* inbuf = mb_buffer; -- Cheers Jorge.-
In article <20060406123034.GG13477@dillo.org>, Jorge Arellano Cid <jcid@dillo.org> writes
Yes, try in xutf8.cxx:897
- const char* inbuf = mb_buffer; + char* inbuf = mb_buffer;
Good call - but now it collapses in a set of link-time errors (unresolved refs) in fluid.... -- robert w hall
participants (3)
-
Jeremy Henty
-
Jorge Arellano Cid
-
robert w hall