Hi Wolfgang, On 14/02/07, Wolfgang Jeltsch <[EMAIL PROTECTED]> wrote: > Hello, > > I use wxWidgets-GTK as currently provided by Debian testing which is > version 2.6, probably with Unicode support. My Haskell compiler is GHC 6.6 > but this shouldn't matter at the moment. > > I configured wxHaskell using the --prefix, --with-opengl and > --package-conf > options. When running make afterwards, I received the output which is > attached to this e-mail. Can anybody tell me what's wrong here and how I can > work around these problems?
This looks as though it is a Unicode issue - problems with wxString usually are. Basically on non-unicode builds the underlying type is a char * and on Unicode builds it is defined as a suitable pointer for Unicode strings. Try adding (or removing) --with-unicode from wxHaskell command line. running '<path-to>/wx-config --list' will tell you whether you need to build for Unicode or not. Regards Jeremy ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ wxhaskell-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wxhaskell-users
