From: Eric K. <eri...@gm...> - 2008-03-05 14:23:02
|
More stuff related to a 0.10.3 release candidate. Basically fixes to 'make bindist' on my end, and some documentation. Now we need people to make packages for their platforms, test them out, etc. Tue Mar 4 22:43:27 GMT 2008 Eric Kow <eri...@gm...> * Bump to 0.10.3. Wed Mar 5 10:32:28 GMT 2008 Eric Kow <eri...@gm...> * Add vim modeline for makefile.lib. It's really irritating otherwise; vim thinks it's COBOL. Wed Mar 5 11:14:15 GMT 2008 Eric Kow <eri...@gm...> * Don't do wildcard expansion in cp-echo. It seems to expand non-wildcard strings like into the empty string. Not sure if this breaks anything else, though. Wed Mar 5 11:23:24 GMT 2008 Eric Kow <eri...@gm...> * Fix dep: wx-bindist requires wx Wed Mar 5 11:24:01 GMT 2008 Eric Kow <eri...@gm...> * Withdraw haddock support for GHC < 6.2. Portability is nice and all, but this is getting hard to maintain. Wed Mar 5 11:26:39 GMT 2008 Eric Kow <eri...@gm...> * Update URL for haddock interface files. Wed Mar 5 11:27:20 GMT 2008 Eric Kow <eri...@gm...> * (configure/haddock) Set normdocroot on non-Cygwin. Wed Mar 5 11:38:37 GMT 2008 Eric Kow <eri...@gm...> * Also take advantage of -split-objs for wx. Wed Mar 5 13:48:26 GMT 2008 Eric Kow <eri...@gm...> * Update hdocbases to work with haddock2 and ghc 6.8.2 I'm not sure which, but this makes it compile on my end. Wed Mar 5 13:52:06 GMT 2008 Eric Kow <eri...@gm...> * Update list of developers (homepage). Wed Mar 5 13:52:27 GMT 2008 Eric Kow <eri...@gm...> * Update repository info (now using darcs, not CVS). (homepage) Wed Mar 5 13:54:36 GMT 2008 Eric Kow <eri...@gm...> * Remove scintilla from wishlist (homepage). Already implemented as far as I know. Wed Mar 5 14:18:06 GMT 2008 Eric Kow <eri...@gm...> * Add bugs to the dist files. We want people to know we're aware of them, and we want them to get the idea of writing bug reports with demonstrators. Wed Mar 5 14:18:41 GMT 2008 Eric Kow <eri...@gm...> * Add XRC as a wishlist task (homepage). Wed Mar 5 14:20:57 GMT 2008 Eric Kow <eri...@gm...> * Last modified (homepage). |
From: shelarcy <she...@gm...> - 2008-03-05 17:10:09
|
Hi Eric, On Wed, 05 Mar 2008 23:22:48 +0900, Eric Kow <eri...@gm...> wrote: > More stuff related to a 0.10.3 release candidate. Basically fixes to 'make > bindist' on my end, and some documentation. Now we need people to make > packages for their platforms, test them out, etc. It seems that your patch break bindist. > [Fix dep: wx-bindist requires wx > Eric Kow <eri...@gm...>**20080305112324] hunk ./makefile 698 > @$(call cp-srcdist, $^) > = > > # bindist > -wx-bindist: = > > +wx-bindist: wx > @$(call cp-bindist,$(WX-OUTDIR),$(BINDIST-LIBDIR),$(WX-BINS)) > ifdef ENABLE-PROF > @$(call cp-bindist,$(WX-OUTDIR),$(BINDIST-LIBDIR),$(WX-PROF-BINS)) bindist includes wxcore-bindist and wx-bindist. And "make wx" removes wxcore file. ifdef ENABLE-PROF wx: wx-main-only wx-prof else wx: wx-main-only endif wx-main-only: wxcore-clean wx-main So, now "make bindist" removes wxcore file before generating bindist. It is unexpected behaviour. And I know one more problem on Windows. > [Update hdocbases to work with haddock2 and ghc 6.8.2 > Eric Kow <eri...@gm...>**20080305134826 > I'm not sure which, but this makes it compile on my end. > ] { > > (snip) > > # Find .haddock files > if test "$hdocfound" =3D "yes"; then > hunk ./configure 683 > 6.0* | 6.1* | 6.2* | 6.3* | 6.4* | 6.5* | 6.6*) > docroot=3D"$ghcroot/doc/html/libraries";; > 6.*) = > > - docroot=3D"$ghcroot/doc/libraries";; > + docroot=3D"$ghcroot/share/doc/ghc/libraries";; > *) > docroot=3D"$ghcroot/doc/libraries";; > esac $docroot isn't in share directory on Windows platform. How about change following in this part? if test "$cygpathfound"; then docroot="$ghcroot/doc/libraries" else docroot="$ghcroot/share/doc/ghc/libraries" fi ;; -- shelarcy <shelarcy hotmail.co.jp> http://page.freett.com/shelarcy/ |
From: Eric K. <eri...@gm...> - 2008-03-05 17:20:43
|
Hi, > It seems that your patch break bindist. Argh :-) > ifdef ENABLE-PROF > wx: wx-main-only wx-prof > else > wx: wx-main-only > endif > wx-main-only: wxcore-clean wx-main Huh. So that's why it kept recompiling wxcore. Is there a good reason for wx to be calling wxcore-clean? > $docroot isn't in share directory on Windows platform. > How about change following in this part? > > if test "$cygpathfound"; then > docroot="$ghcroot/doc/libraries" > else > docroot="$ghcroot/share/doc/ghc/libraries" > fi > ;; Fair enough. By the way, I just noticed why you originally suggested waiting for wxWidgets 2.8 support (because 2.6 can't build on Leopard). Not sure what to do about it. Some online forums suggest compiling it with the 10.4 SDK -- Eric Kow <http://www.nltg.brighton.ac.uk/home/Eric.Kow> PGP Key ID: 08AC04F9 |
From: shelarcy <she...@gm...> - 2008-03-05 18:12:09
|
On Thu, 06 Mar 2008 02:20:29 +0900, Eric Kow <eri...@gm...> wrote: > Is there a good > reason for wx to be calling wxcore-clean? I forgot about that. I'll check that morning or afternoon. (I'm sleepy now.) > By the way, I just noticed why you originally suggested waiting for > wxWidgets 2.8 support (because 2.6 can't build on Leopard). Not sure > what to do about it. Some online forums suggest compiling it with the > 10.4 SDK I don't know about that. How about add that information and link to installation guide? I think that would be FAQ. Best Regards, -- shelarcy <shelarcy hotmail.co.jp> http://page.freett.com/shelarcy/ |
From: shelarcy <she...@gm...> - 2008-03-06 13:02:12
|
On Thu, 06 Mar 2008 03:11:49 +0900, shelarcy <she...@gm...> wrote: >> By the way, I just noticed why you originally suggested waiting for >> wxWidgets 2.8 support (because 2.6 can't build on Leopard). Not sure >> what to do about it. Some online forums suggest compiling it with the >> 10.4 SDK > > I don't know about that. > How about add that information and link to installation guide? I checked web resources and I added imformation on Runtime issues. If you think this is not good imformation, please refactor that. http://www.haskell.org/haskellwiki/WxHaskell/Install#Runtime_issues Thanks, -- shelarcy <shelarcy hotmail.co.jp> http://page.freett.com/shelarcy/ |
From: Eric K. <eri...@gm...> - 2008-03-06 13:27:00
|
> I checked web resources and I added imformation on Runtime issues. > If you think this is not good imformation, please refactor that. > > http://www.haskell.org/haskellwiki/WxHaskell/Install#Runtime_issues Cool. I've made some minor modifications (moving it up a section and adding a link). -- Eric Kow <http://www.nltg.brighton.ac.uk/home/Eric.Kow> PGP Key ID: 08AC04F9 |