From: Jeremy O'D. <jer...@gm...> - 2007-02-14 21:21:57
|
Hi Wolfgang, On 14/02/07, Wolfgang Jeltsch <4f4...@ac...> 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 |