From: Claus R. <cla...@ta...> - 2005-05-08 12:43:30
|
>?? Why would you give up on wxHaskell? :-) Seriously, if you >have real problems, please tell me so and we can see what >to do about it. well, our problem was that no one was even listening to the problems we told you about!-) >Hmm, when I do "ghc --version" it says: >> The Glorious Glasgow Haskell Compilation System, version 6.4 >I guessed tis means 6.4.0 and that 6.4.1 is the current >development version of ghc. I plan to only release binary >versions for stable versions of ghc -- people with development >versions of ghc are usually able to build wxHaskell themselves. > >The latest development version of GHC works out of the box >with wxHaskell as it has real bugfixes that fix the current >problems on windows (while my bugfix release works around it). Sigbjorn has set up nightly builds of both HEAD and STABLE for mingw, and has merged the fixes to the STABLE branch while bumping the version number to 6.4.1. So, windows ghc users are no longer poor cousins, and can get the benefits of bug-fixes without going for development builds (which are somewhere in the 6.5 region) or waiting for infrequent releases. no need for ugly work-arounds;-) http://www.haskell.org//pipermail/cvs-all/2005-May/040980.html http://www.haskell.org//pipermail/cvs-all/2005-May/040972.html http://www.haskell.org/ghc/dist/stable/dist as for being able to build wxhaskell themselves, I'm in the process of giving that a go (windows xp with cygwin and mingw,ghc-6.4.1, wxhaskell-src-0.9.4-1.zip,wxWidgets 2.6.0+2 patches). wxWidgets seems to have built and installed just fine, and ./configure for wxHaskell works, but when trying to make wxHaskell, I get the error below. Any suggestions? cheers, claus .. g++ -c wxc/src/treectrl.cpp -o out/wxc/treectrl.o -MD -IC:/cygwin/usr/local/include -IC:/cygwin/usr/local/lib/wx/include/msw-ansi-release-static-2.6 -I C:/cygwin/usr/local/include/wx-2.6 -D__WIN95__ -D__WXMSW__ -Iwxc/include wxc/src/treectrl.cpp: In function `void wxTreeCtrl_GetFirstChild(void*, void*, void*, void*)': wxc/src/treectrl.cpp:333: warning: `GetFirstChild' is deprecated (declared at C:/cygwin/usr/local/include/wx-2.6/wx/msw/treectrl.h:407) wxc/src/treectrl.cpp: In function `void wxTreeCtrl_GetNextChild(void*, void*, void*, void*)': wxc/src/treectrl.cpp:338: warning: `GetNextChild' is deprecated (declared at C:/cygwin/usr/local/include/wx-2.6/wx/msw/treectrl.h:409) g++ -c wxc/src/image.cpp -o out/wxc/image.o -MD -IC:/cygwin/usr/local/include -IC:/cygwin/usr/local/lib/wx/include/msw-ansi-release-static-2.6 -IC:/ cygwin/usr/local/include/wx-2.6 -D__WIN95__ -D__WXMSW__ -Iwxc/include wxc/src/image.cpp:124:2: warning: no newline at end of file g++ -c wxc/src/apppath.cpp -o out/wxc/apppath.o -MD -IC:/cygwin/usr/local/include -IC:/cygwin/usr/local/lib/wx/include/msw-ansi-release-static-2.6 -IC :/cygwin/usr/local/include/wx-2.6 -D__WIN95__ -D__WXMSW__ -Iwxc/include wxc/src/apppath.cpp:114:2: warning: no newline at end of file g++ -c wxc/src/db.cpp -o out/wxc/db.o -MD -IC:/cygwin/usr/local/include -IC:/cygwin/usr/local/lib/wx/include/msw-ansi-release-static-2.6 -IC:/cyg win/usr/local/include/wx-2.6 -D__WIN95__ -D__WXMSW__ -Iwxc/include wxc/src/db.cpp: In function `int wxDbColInf_GetColumnSize(wxDbColInf*)': wxc/src/db.cpp:1035: `class wxDbColInf' has no member named `columnSize' wxc/src/db.cpp: In function `int wxDbColInf_GetBufferLength(wxDbColInf*)': wxc/src/db.cpp:1044: `class wxDbColInf' has no member named `bufferLength' wxc/src/db.cpp: In function `wxDbColInf* wxDb_GetResultColumns(wxDb*, int*)': wxc/src/db.cpp:1158: `class wxDbColInf' has no member named `columnSize' make: *** [out/wxc/db.o] Error 1 |