Tue Mar 18 08:40:54 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Require --enable-unicode in wxWidgets.

Wed Mar 19 23:27:39 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Re-add combined haddock.

New patches:

[Require --enable-unicode in wxWidgets.
Eric Kow <[EMAIL PROTECTED]>**20080318084054] hunk ./configure 759
 # wxWidgets
 #--------------------------------------------------------------------
 
+# confirm that we have unicode enabled
+`$wxconfig --unicode=yes`
+if test "$?" = 0; then
+  echo " wxWidgets Unicode support found"
+else
+  echo ""
+  echo " I can't find the Unicode version of wxWidgets!"
+  echo ""
+  echo " Did you configure configure wxWidgets with --enable-unicode?"
+  echo " If you have more than one copy, are you passing in the right"
+  echo " version via --wx-config?"
+  exit 1
+fi
 
 #--------------------------------------------------------------------
 # install
[Re-add combined haddock.
Eric Kow <[EMAIL PROTECTED]>**20080319232739] {
hunk ./makefile 945
 DOC-OUTDIR  =$(OUTDIR)/doc/html
 WXCORE-DOC-OUTDIR  =$(DOC-OUTDIR)/wxcore
 WX-DOC-OUTDIR  	   =$(DOC-OUTDIR)/wx
+WXBOTH-DOC-OUTDIR  =$(DOC-OUTDIR)
 WXCORE-DOCFILE     =$(WXCORE-DOC-OUTDIR)/wxcore.haddock
 WX-DOCFILE     	   =$(WX-DOC-OUTDIR)/wx.haddock
hunk ./makefile 948
+WXBOTH-DOCFILE     =$(WXBOTH-DOC-OUTDIR)/wxhaskell.haddock
 WXCORE-HDOCFLAGS   = --prologue=config/prologue.txt --html $(HDOCBASES)
 WX-HDOCFLAGS   = $(WXCORE-HDOCFLAGS) -i$(WXCORE-DOC-OUTDIR)/wxcore.haddock
 WXCORE-DOCSOURCES  = $(WXCORE-DOCS)
hunk ./makefile 960
 doc-dirs:
 	@$(call ensure-dir,$(WXCORE-DOC-OUTDIR))
 	@$(call ensure-dir,$(WX-DOC-OUTDIR))
+	@$(call ensure-dir,$(WXBOTH-DOC-OUTDIR))
 
 doc-clean:
 	[EMAIL PROTECTED](call full-remove-dir,$(WXCORE-DOC-OUTDIR))
hunk ./makefile 965
 	[EMAIL PROTECTED](call full-remove-dir,$(WX-DOC-OUTDIR))
+	[EMAIL PROTECTED](call full-remove-dir,$(WXBOTH-DOC-OUTDIR))
+
+combined-doc: doc-dirs $(WXBOTH-DOCFILE)
 
 # copy documentation to the wxhaskell website
 webdoc: doc
hunk ./makefile 975
 
 # documentation distribution
 ifeq ($(HDOCFOUND),yes)
-docdist: docdist-clean doc
+docdist: docdist-clean combined-doc
 	@echo "-- adding documentation"
 	@echo $(wildcard $(DOC-OUTDIR)/*)
 	@$(call cp-docdist,$(OUTDIR),$(wildcard $(DOC-OUTDIR)/*))
hunk ./makefile 999
 $(WX-DOCFILE): config/prologue.txt $(WX-DOCSOURCES)
 	$(HDOC) --odir $(WX-DOC-OUTDIR) --dump-interface=$(WX-DOCFILE) $(WX-HDOCFLAGS) $(WX-DOCSOURCES)
 
+$(WXBOTH-DOCFILE): config/prologue.txt $(WXCORE-DOCSOURCES) $(WX-DOCSOURCES)
+	$(HDOC) --odir $(WXBOTH-DOC-OUTDIR) --dump-interface=$(WXBOTH-DOCFILE) $(WXCORE-HDOCFLAGS) $(WXCORE-DOCSOURCES) $(WX-DOCSOURCES)
+
 #--------------------------------------------------------------------------
 # Cabal / Hackage stuff
 #--------------------------------------------------------------------------
}

Context:

[TAG 0.10.3rc2
Eric Kow <[EMAIL PROTECTED]>**20080317234940] 
[RC1 to RC2
Mads Lindstroem <[EMAIL PROTECTED]>**20080317190032] 
[Added Debian build script
Mads Lindstroem <[EMAIL PROTECTED]>**20080317190003] 
[Added profiling and documentation to Debian build
Mads Lindstroem <[EMAIL PROTECTED]>**20080317185854] 
[Note bugfixes since 0.10.3rc1
Eric Kow <[EMAIL PROTECTED]>**20080316171020] 
[Simplify TreeCtrlTest and move it out of bugs/
Eric Kow <[EMAIL PROTECTED]>**20080316170005] 
[Simplify treeCtrlGetNextChild2 to use getNextSibling.
Eric Kow <[EMAIL PROTECTED]>**20080316163720
 
 I'm not entirely sure why the previous implementation was broken (it stopped at
 the first child, returning an invalid tree id for the subsequent one). I
 thought perhaps it might have been because we were not passing in the same tree
 cookie pointer each item, but threading the pointer through via the Cookie type
 did not seem either.
 
 Anyway, I can't see any reason why GetNextSibling would be a bad idea.
] 
[Auto-recognising ghc version for Debian build
Mads Lindstroem <[EMAIL PROTECTED]>**20080316113752] 
[Announce 0.10.3rc1 on homepage.
Eric Kow <[EMAIL PROTECTED]>**20080316103621] 
[Add ENABLE-SPLITOBJS flag to profiling version of library.
shelarcy <[EMAIL PROTECTED]>**20080307053607] 
[Fix: dbGetDataSources returns only first letter of every word.
shelarcy <[EMAIL PROTECTED]>**20080316061701] 
[Fix: bindist try to contain bugs/BoxedCombinator that isn't in bugs directory now.
shelarcy <[EMAIL PROTECTED]>**20080316014517] 
[Make BoxedCombinator test fancier and move it out of bugs.
Eric Kow <[EMAIL PROTECTED]>**20080315230225] 
[Push wxStaticBox generated by boxed combinator to bottom (fixes bug 1549363).
Eric Kow <[EMAIL PROTECTED]>**20080315225722
 
 The wxWidgets documentation says:
   "[T]he order in which you create new controls is important. Create your
   wxStaticBox control before any siblings that are to appear inside the
   wxStaticBox in order to preserve the correct Z-Order of controls."
 
 http://www.wxwidgets.org/manuals/2.6.3/wx_wxstaticbox.html
 
 Basically, the wxStaticBox created by 'boxed' was covering up the widgets
 it was supposed to contain.
] 
[Add a test for a possible treeCtrl bug.
Eric Kow <[EMAIL PROTECTED]>**20080315151641] 
[Add withImageData and withPixelBuffer (fixes bug 1003006).
Eric Kow <[EMAIL PROTECTED]>**20080315151339
 
 Quoting Jules Bean, whose solution I implemented:
 
 > 1    image <- imageCreateSized (WX.Size 256 256)                                                                   
 > 2    pixels <- imageGetData image                                                                                  
 > 3    bytes <- peekArray (256*256*3) (castPtr pixels)                                                               
 >                                                                                                                    
 >                                                                                                                    
 > After line 2 is executed, there is no remaining reference to 'image' in                                            
 > the program. 'image' is dead, and can be garbage collected. (Although it                                           
 > may not be at any particular time). If 'image' gets GC'ed, because there                                           
 > is a ForeignPtr inside, that calls the C++ destructor. The wxImage C++                                             
 > destructor believes it owns the data block, so it free()s it, and                                                  
 > 'pixels' is left pointing to a free()ed block. 
  
] 
[Fixing executing bug on linux
Mads Lindstroem <[EMAIL PROTECTED]>**20080313160828] 
[Add stub for 0.10.3 download information on homepage.
Eric Kow <[EMAIL PROTECTED]>**20080312195600
 There are still some slots to fill.
 Also, I used a lazier way of describing the links which may be not
 as nice for our users, but a bit easier for us to maintain.
] 
[Add wxcore/wx to the 'User interfaces' category.
Eric Kow <[EMAIL PROTECTED]>**20080312170058] 
[Developer shuffle
Eric Kow <[EMAIL PROTECTED]>**20080312155739
 - Tim and Frank do not seem available
 - Somebody needs to support MacOS X, so it might as well be me (sigh).
 - Daan is always a member of the development team :-)
] 
[Reverse 'bin' and $ARCHITECTURE in dmg name.
Eric Kow <[EMAIL PROTECTED]>**20080311192253
 So that the sourceforge file release page is more readable.
] 
[Updating Yahu link
Mads Lindstroem <[EMAIL PROTECTED]>**20080312192116] 
[Reflecting that we now have two mailing lists
Mads Lindstroem <[EMAIL PROTECTED]>**20080312191716] 
[Updating links
Mads Lindstroem <[EMAIL PROTECTED]>**20080312191402] 
[depends on wxgtk2.6-dev in stead of wxgtk-dev
Mads Lindstroem <[EMAIL PROTECTED]>**20080311184036] 
[Added ldconfig to post install/remove
Mads Lindstroem <[EMAIL PROTECTED]>**20080311183706] 
[Debian build: corrected manifest
Mads Lindstroem <[EMAIL PROTECTED]>**20080310221607] 
[Debian build: changed permissions and file ownership
Mads Lindstroem <[EMAIL PROTECTED]>**20080310221512] 
[Debian build: version automatically recognized
Mads Lindstroem <[EMAIL PROTECTED]>**20080310221421] 
[Tar the srcdist (as well as zipping it).
Eric Kow <[EMAIL PROTECTED]>**20080310091951
 For Gentoo, with love.
] 
[Set release to rc1 in Makefile.
Eric Kow <[EMAIL PROTECTED]>**20080310091941] 
[Add txt suffix to Windows' README file for more user friendly.
shelarcy <[EMAIL PROTECTED]>**20080309005641] 
[Delete DataTimeTest.hs file after DataTime test
Mads Lindstroem <[EMAIL PROTECTED]>**20080308195318] 
[Initial support for Debian DEB files
Mads Lindstroem <[EMAIL PROTECTED]>**20080308194942
 
 This is only initial support. No doubt some tweaking will be needed
 before it is finished.
 
] 
[Add architecture to macdist (as pointed out by shelarcy).
Eric Kow <[EMAIL PROTECTED]>**20080308131459] 
[List up changes since 0.9.4-1 in changes.txt.
shelarcy <[EMAIL PROTECTED]>**20080308060351] 
[Fix: haddock2 support doesn't work on Windows.
shelarcy <[EMAIL PROTECTED]>**20080308043834] 
[TAG 0.10.3rc1
Eric Kow <[EMAIL PROTECTED]>**20080308130252] 
[Add a README file for Windows.
Eric Kow <[EMAIL PROTECTED]>**20080308130228] 
[Replace wx-main dependency with wx-only.
Eric Kow <[EMAIL PROTECTED]>**20080308123500
 As pointed out by Mads.
] 
[Restart Camels game at same level if you lose.
Eric Kow <[EMAIL PROTECTED]>**20080307174035] 
[Some tweaks to macdist makefile target.
Eric Kow <[EMAIL PROTECTED]>**20080308000240] 
[Get the MacOS X installer to guess some possible GHC locations.
Eric Kow <[EMAIL PROTECTED]>**20080308000234
 This seems kinda ugly, but I don't know what else to do.
   ghc-pkg from path
   ghc-pkg in /usr/local/bin
   ghc-pkg in /opt/local/bin
   ghc-pkg in /sw/bin
] 
[Detect haddock version.
Eric Kow <[EMAIL PROTECTED]>**20080307230034] 
[Add some instructions to the BouncingBalls sample.
Eric Kow <[EMAIL PROTECTED]>**20080307135913] 
[Adjust size of navigation boxes (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080306141406] 
[Withdraw more support for ghcold (< 6.4)
Eric Kow <[EMAIL PROTECTED]>**20080306141339] 
[Fix dist path in wxhaskell.spec
Eric Kow <[EMAIL PROTECTED]>**20080305184035] 
[Update building instructions (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305175004] 
[Add some instructions to the wxcore's BouncingBalls sample, too.
shelarcy <[EMAIL PROTECTED]>**20080307172125] 
[Data.Time package now only used when available
Mads Lindstroem <[EMAIL PROTECTED]>**20080307211643
 
 Added test to see if Data.Time package is available. If not we use the
 old System.Time package in stead.
] 
[Describe older make use in documentation for cygwin
[EMAIL PROTECTED] 
[Sync Visual Studio's wxc library version to 0.10.3.
shelarcy <[EMAIL PROTECTED]>**20080306001813] 
[Fix mispelling of Mads's family name.
Eric Kow <[EMAIL PROTECTED]>**20080305173825
 Sorry!
] 
[Don't call wxcore-clean when building wx.
Eric Kow <[EMAIL PROTECTED]>**20080305173555
 Also, build wxcore in its own directory, so we don't get overlapping with wx.
 (I'm guessing that the overlap is why we called wxcore-clean)
] 
[More portable haddocking for Windows.
Eric Kow <[EMAIL PROTECTED]>**20080305172200
 As suggested by shelarcy.
] 
[Last modified (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305142057] 
[Add XRC as a wishlist task (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305141841] 
[Add bugs to the dist files.
Eric Kow <[EMAIL PROTECTED]>**20080305141806
 
 We want people to know we're aware of them, and we want them
 to get the idea of writing bug reports with demonstrators.
] 
[Remove scintilla from wishlist (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305135436
 Already implemented as far as I know.
] 
[Update repository info (now using darcs, not CVS). (homepage)
Eric Kow <[EMAIL PROTECTED]>**20080305135227] 
[Update list of developers (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305135206] 
[Update hdocbases to work with haddock2 and ghc 6.8.2
Eric Kow <[EMAIL PROTECTED]>**20080305134826
 I'm not sure which, but this makes it compile on my end.
] 
[Also take advantage of -split-objs for wx.
Eric Kow <[EMAIL PROTECTED]>**20080305113837] 
[(configure/haddock) Set normdocroot on non-Cygwin.
Eric Kow <[EMAIL PROTECTED]>**20080305112720] 
[Update URL for haddock interface files.
Eric Kow <[EMAIL PROTECTED]>**20080305112639] 
[Withdraw haddock support for GHC < 6.2.
Eric Kow <[EMAIL PROTECTED]>**20080305112401
 Portability is nice and all, but this is getting hard to maintain.
] 
[Fix dep: wx-bindist requires wx
Eric Kow <[EMAIL PROTECTED]>**20080305112324] 
[Don't do wildcard expansion in cp-echo.
Eric Kow <[EMAIL PROTECTED]>**20080305111415
 It seems to expand non-wildcard strings like into the empty string.
 Not sure if this breaks anything else, though.
] 
[Use xargs to feed split objs to $(AR) 25 at a time.
Eric Kow <[EMAIL PROTECTED]>**20080305104856] 
[Add vim modeline for makefile.lib.
Eric Kow <[EMAIL PROTECTED]>**20080305103228
 It's really irritating otherwise; vim thinks it's COBOL.
] 
[Add an --hcflags option to the configure script.
Eric Kow <[EMAIL PROTECTED]>**20080227223152
 For --split-objs and friends.
] 
[Bump to 0.10.3.
Eric Kow <[EMAIL PROTECTED]>**20080304224327] 
[Back off from using split-objs for Graphics.UI.WXCore.WxcTypes
Eric Kow <[EMAIL PROTECTED]>**20080304223524
 
 I don't really understand why we have to do this, but I get undefined
 symbol errors linking sample apps when using this with --enable-split-objs
] 
[Warn about GHC older than 6.4 (to match removed functionality).
Eric Kow <[EMAIL PROTECTED]>**20080304223505] 
[Fix configure bug where ENABLE-SPLITOBJS was being defined.
Eric Kow <[EMAIL PROTECTED]>**20080304170729
 It was being set to 'no' (perhaps the makefile should just
 check if ENABLE-SPLITOBJS='yes')
] 
[Add a wxcREFUSE_MEDIACTRL flag (for the same reason as opengl)
Eric Kow <[EMAIL PROTECTED]>**20080304154047] 
[Added testcase for FontFixed problem (1906476)
Mads Lindstroem <[EMAIL PROTECTED]>**20080304060118] 
[Create a --enable-split-objs option for configure and makefile.
Eric Kow <[EMAIL PROTECTED]>**20080302233710
 
 For wxcore, --enable-split-objs calls GHC with -split-objs and
 combines the splitted up .o files in the archive.
] 
[Remove List Control test case (bug 1742979 is already fixed on darcs).
shelarcy <[EMAIL PROTECTED]>**20080228081614] 
[Fix: bugs/makefile's "make clean" doesn't clean Windows things.
shelarcy <[EMAIL PROTECTED]>**20080228082649] 
[Remove parasite configure change.
Eric Kow <[EMAIL PROTECTED]>**20080227134757
 Move around some variables to make more sense.
] 
[Add wx-prof target for Windows binary distribution.
shelarcy <[EMAIL PROTECTED]>**20080227035051] 
[Fix bugs in enable wxcore profiling.
shelarcy <[EMAIL PROTECTED]>**20080227034845] 
[Specify what OS BoxedCombinator bug fails on.
Eric Kow <[EMAIL PROTECTED]>**20080227135140] 
[Fix bugs makefile under Linux
Eric Kow <[EMAIL PROTECTED]>**20080227134848] 
[Add a configure option to enable wxcore profiling.
Eric Kow <[EMAIL PROTECTED]>**20080226215155] 
[Fix some bugs pointed out by shelarcy on wxcore-prof.
Eric Kow <[EMAIL PROTECTED]>**20080226211227] 
[Add wxcore-prof target for compiling profiling versions of wxcore.
Eric Kow <[EMAIL PROTECTED]>**20080225231635] 
[Remove support for GHC prior to 6.4.
Eric Kow <[EMAIL PROTECTED]>**20080225223554] 
[Change samples/contrib/Camels.hs encoding to UTF-8.
shelarcy <[EMAIL PROTECTED]>**20080225142551] 
[Fix: docdist and bindist's wx documents don't link wxcore documents.
shelarcy <[EMAIL PROTECTED]>**20080225141105] 
[Fix: configure doesn't find GHC's Haddock document directory on GHC 6.8.x or higher.
shelarcy <[EMAIL PROTECTED]>**20080225135754] 
[Fix bug pointed out by shelarcy in --enable-mediactrl flag.
Eric Kow <[EMAIL PROTECTED]>**20080225110340
 It was setting the opengl flag instead.
] 
[Maintainer is wxhaskell-devel not wxhaskell-users.
Eric Kow <[EMAIL PROTECTED]>**20080225003139] 
[Add a test case for start >> start (1610984)
Eric Kow <[EMAIL PROTECTED]>**20080225001328] 
[Implement an --enable-mediactrl configure flag.
Eric Kow <[EMAIL PROTECTED]>**20080225000109
 with mediactrl disabled by default.
] 
[Add a diagram of wxhaskell components.
Eric Kow <[EMAIL PROTECTED]>**20080224185557] 
[Eliminate mandatory --with-opengl on Linux.
Eric Kow <[EMAIL PROTECTED]>**20080219171912
 
 If wxWidgets is compiled with opengl, its header files
  #define wxUSE_GLCANVAS 1
 
 (See, for example, /usr/lib/wx/include/gtk2-unicode-release-2.6/wx/setup.h on
 Ubuntu Gutsy Gibbon), which causes us to compile glcanvas as if we were going
 to link against the wxWidgets opengl library.  But since we are not linking
 against that, the user gets errors compiling their applications.
 
 Here we introduce an extra preprocessor flag to really insist that no, despite
 what wxWidgets says, we don't want to use GLCANVAS.
] 
[Fix: wxPrint**, wxPreviveFrame** and other function causes link error by undefined reference on Windows (Visual Studio).
shelarcy <[EMAIL PROTECTED]>**20080219034144] 
[(OS X) Skip intermediate step of compiling master.o (revisited!)
Eric Kow <[EMAIL PROTECTED]>**20080218225200
 
 I'm going to quote some mails from Malcolm Wallace on wxhaskel-users in early
 2008-02.
 
 First message:
 > I'm attempting to install wxHaskell from the darcs repo at
 > darcs.haskell.org, under ghc-6.6. on MacOS 10.4.11, with
 > wxMac-2.6.4.
 >
 > The compilation of wxHaskell seems to proceed OK until the link
 > stage:
 >
 >     g++ -r -keep_private_externs -nostdlib -o out/wxc/master.o ....
 >
 > which failed because there is no -lstdc++-static on my machine.  I
 > found the place in the makefile to replace -lstdc++-static with
 > the dynamic -lstdc++, and compilation proceeds further, but not
 > much:
 >
 >      g++ -dynamiclib -install_name\
 > /usr/local/wxhaskell/lib/libwxc-mac2.6.4-0.10.1.dylib -undefined suppress\
 > -flat_namespace -o out/wxc/libwxc-mac2.6.4-0.10.1.dylib out/wxc/master.o\
 > -lwx_macu_gl-2.6 -L/usr/local/lib -framework QuickTime -framework IOKit\
 > -framework Carbon -framework Cocoa -framework System -lwx_macu_media-2.6\
 > -lwx_macu-2.6
 >     ld: out/wxc/master.o undefined symbol 12387 (__ZTI10wxListBase) can't be a weak definition
 >     /usr/bin/libtool: internal link edit command failed
 >
 > The offending symbol __ZTI10wxListBase looks like it might be a
 > z-encoded symbol from Haskell-land, but I'm not sure how to proceed.
 
 Second message:
 > A correct build on MacOS 10.4.11 with ghc-6.6 requires that
 > wxWidgets is configured with --enable-shared, and that this patch:
 >
 >     (OS X) Check architecture to use intermediate step of compiling
 >     master.o or not.
 >
 > be darcs unpulled from your local repo.
 >
 > With these tweaks, wxHaskell builds, compiles, and runs the demo
 > programs.
 
] 
[Cleanup passing of std/media/stc/opengl to wx-config.
Eric Kow <[EMAIL PROTECTED]>**20080218130345] 
[Add Sound type's Media class stop method.
shelarcy <[EMAIL PROTECTED]>**20080218160511] 
[Fix STC* test cases.
shelarcy <[EMAIL PROTECTED]>**20080218155734] 
[Fix: wrapper.h and sound.cpp doesn't care about wxWindows 2.4.2.
shelarcy <[EMAIL PROTECTED]>**20080218155605] 
[Sync Visual Studio Project's source flatten away ewxw directories.
shelarcy <[EMAIL PROTECTED]>**20080218142201] 
[Export TabPage type synonym (bug 1349475)
Eric Kow <[EMAIL PROTECTED]>**20080218005112] 
[Add ListControl test case (bug 1742979)
Eric Kow <[EMAIL PROTECTED]>**20080218002441
 This might only be a bug on Windows, if at all.
] 
[Add test case textColor attribute (bug 1224727).
Eric Kow <[EMAIL PROTECTED]>**20080218000738] 
[Fix Landscape printing (bug 1168903).
Eric Kow <[EMAIL PROTECTED]>**20080217235724
 
 Filed on behalf on Lennart Augustson <[EMAIL PROTECTED]>, who
 submitted a regular Unix patch.
] 
[Add BoxedCombinator test case (bug 1549363)
Eric Kow <[EMAIL PROTECTED]>**20080217233719] 
[Add the submenu bug.
Eric Kow <[EMAIL PROTECTED]>**20080217174326] 
[Add NonModalDialog test case (bug #1372529)
Eric Kow <[EMAIL PROTECTED]>**20080217174203] 
[Add a bugs directory for test cases.
Eric Kow <[EMAIL PROTECTED]>**20080217174142] 
[Fix UTF8Sampler test case.
Eric Kow <[EMAIL PROTECTED]>**20080217130553] 
[Fix typo pointed out on bugtracker.
Eric Kow <[EMAIL PROTECTED]>**20080217114303] 
[dos2unix files that have both CRLF and LF line terminators
Eric Kow <[EMAIL PROTECTED]>**20080217095711
 
 Text editors get confused by these.
 Get rid of trailing whitespace while we're at it.
] 
[Flatten away ewxw directories.
Eric Kow <[EMAIL PROTECTED]>**20080217094929
 
 This is to mirror the wxc project, making it easier to compare our
 version of wxc with the standalone one.
] 
[Remove unused ewxw files.
Eric Kow <[EMAIL PROTECTED]>**20080217082029
 
 There is an overlap between ./wxc/src/ewxw and ./wxc/src.  The makefile seems
 to ignore the ones in ewxw.
] 
[Synch Visual Studio Project's wxc library version
shelarcy <[EMAIL PROTECTED]>**20080216161420] 
[Synch Visual Studio Project's output dir same as makefile
shelarcy <[EMAIL PROTECTED]>**20080216155656] 
[Ugly hack to make setup haddock work without first building.
Eric Kow <[EMAIL PROTECTED]>**20080216135157] 
[Bump to 0.10.2.
Eric Kow <[EMAIL PROTECTED]>**20080216130854] 
[Mimick cabal in placement of haddocks.
Eric Kow <[EMAIL PROTECTED]>**20080216130819] 
[Move cabal stuff to end of makefile.
Eric Kow <[EMAIL PROTECTED]>**20080216125445
 so that all variables are defined.
] 
[Add Hs-Source-Dirs for wxcore.cabal.
Eric Kow <[EMAIL PROTECTED]>**20080216125112
 In case we ever switch to the Simple build type.
] 
[Re-add time package dependency (needed by wxdirect).
Eric Kow <[EMAIL PROTECTED]>**20080216124853] 
[Improve description and synopsis of cabal files.
Eric Kow <[EMAIL PROTECTED]>**20080216124832] 
[Split doc building into wxcore and wx version.
Eric Kow <[EMAIL PROTECTED]>**20080216124746] 
[Modernise haskell98 imports in wxdirect.
Eric Kow <[EMAIL PROTECTED]>**20080216120113] 
[Prefer /usr/local/wxhaskell/bin/wx-config to the one on the path.
Eric Kow <[EMAIL PROTECTED]>**20080216113844
 
 This makes it easier to install wxhaskell via cabal-install.
 Just set up a symbolic link to point to point to your wxWidgets,
 no need for the --wx-config flag.
] 
[Add some --bindir, --datadir, --libexecdir to configure script.
Eric Kow <[EMAIL PROTECTED]>**20080216113837
 For Cabal.  The last two are ignored.
] 
[Change output dir to 'dist' to mimick cabal.
Eric Kow <[EMAIL PROTECTED]>**20080216104847] 
[Modernise haskell98 imports in wxcore.
Eric Kow <[EMAIL PROTECTED]>**20080216100020] 
[Consolidate build targets which exist purely for the sake of Cabal.
Eric Kow <[EMAIL PROTECTED]>**20080216095845] 
[Fix some dependencies that Ross Paterson pointed out.
Eric Kow <[EMAIL PROTECTED]>**20080215181444] 
[TAG 0.10.1
Eric Kow <[EMAIL PROTECTED]>**20080215173503] 
Patch bundle hash:
a17154028b6cf3384e78c026fbfa7c29e906c9ae
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
wxhaskell-devel mailing list
wxhaskell-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxhaskell-devel

Reply via email to