Hi, On Wednesday 17 May 2006 23:31, David Reiser wrote: [...] > app.cpp: In function 'int App__convertFromUtf8(const char*, int, > GWEN_BUFFER*)': > app.cpp:2697: error: invalid conversion from 'char**' to 'const char**' > app.cpp:2697: error: initializing argument 2 of 'size_t libiconv > (void*, const char**, size_t*, char**, size_t*)' [...]
Hmm, your version of iconv() seems to expect a const char** as argument 2, whereas "man 3 iconv" shows that a char** should be used (and that's what we use when calling that function)... You might get away with changing line 2680 of that file: from: char *pInbuf; to: const char *pInbuf; Regards Martin -- "Things are only impossible until they're not" AqBanking - http://www.aqbanking.de/ LibChipcard - http://www.libchipcard.de/ ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Aqbanking-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/aqbanking-devel
