Re: [wxhaskell-users] darcs patch: fix-polygon-behaviour-64

2007-02-16 Thread Eric Y. Kow
> Fri Feb 2 16:45:17 CET 2007 [EMAIL PROTECTED] > * fix-polygon-behaviour-64 Thanks; I'll be pushing this in shortly. Sorry for the delay. -- Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon français. pgpbHgvRkWmRd.pgp Description: PG

Re: [wxhaskell-users] building problems

2007-02-16 Thread Eric Kow
Also, is this the darcs version of wxhaskell you're compiling? 0.9.4 does not have Unicode support. You're probably better off with darcs get http://darcs.haskell.org/wxwhaskell -- Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC04F9 Merci de corriger mon françai

Re: [wxhaskell-users] building problems

2007-02-16 Thread Eric Kow
On 2/16/07, Eric Kow <[EMAIL PROTECTED]> wrote: > Try --enable-unicode Err sorry, I was thinking of wxWidgets. Could you check to make sure that you're using the right wx-config? You can force it with --wx-config=/foo/bar/wx-config -- Eric Kow http://www.loria.fr/~kow PGP K

Re: [wxhaskell-users] building problems

2007-02-16 Thread Eric Kow
On 2/16/07, Wolfgang Jeltsch <[EMAIL PROTECTED]> wrote: > Do you > mean the ./configure command line for wxHaskell? Alas, wxHaskell's configure > script doesn't have an option "--with-unicode". Try --enable-unicode Best, -- Eric Kow http://www.loria.fr/~kow PGP Key ID: 08AC

Re: [wxhaskell-users] building problems

2007-02-16 Thread Wolfgang Jeltsch
Am Mittwoch, 14. Februar 2007 22:21 schrieben Sie: > […] > 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 addin

Re: [wxhaskell-users] bus error

2007-02-16 Thread Doaitse Swierstra
ad 1) It has been pointed out to me that you can call the enableGUI >> main only once; otherwise you get the problem I had ad 2) I made a mistake in thinking that the a.out would always be used. So bad reading of the instructions from my side. Sorry. Doaitse On Feb 16, 2007, at 1:40 PM,

[wxhaskell-users] bus error

2007-02-16 Thread Doaitse Swierstra
When trying to run even the smallert wx program in my Mac OS X 10.4, Intel: module Main where import Graphics.UI.WX import EnableGUI main :: IO () main = start hello hello :: IO () hello = do f<- frame[text := "Hello!"] quit <- button f [text := "Quit", on command := close