Sun Sep 16 19:08:28 CEST 2007  Mads Lindstroem <[EMAIL PROTECTED]>
  * Changed Cursor_CreateLoad to return NULL for WXGTK, as WXGTK do yet 
implement this function
New patches:

[Changed Cursor_CreateLoad to return NULL for WXGTK, as WXGTK do yet implement this function
Mads Lindstroem <[EMAIL PROTECTED]>**20070916170828] {
hunk ./wxc/src/ewxw/eljcursor.cpp 18
+#ifdef __WXGTK__
+// See http://thread.gmane.org/gmane.comp.lib.wxwidgets.general/45999
+	return NULL;
+#else
hunk ./wxc/src/ewxw/eljcursor.cpp 23
+#endif
}

Context:

[Rename wxcu-2.6.4.* to wxc-2.6.* as wxc-2.4 things
shelarcy <[EMAIL PROTECTED]>**20070821050957] 
[Update VC++ project file to reflect updated DLL version supporting wxWidgets 2.6.4
shelarcy <[EMAIL PROTECTED]>**20070821044612] 
[Remove old wxc project files between 2.6.0 - 2.6.3
shelarcy <[EMAIL PROTECTED]>**20070821043754] 
[Remove old wxh samples
shelarcy <[EMAIL PROTECTED]>**20070821043453] 
[Remove auto-generated stc files.
Eric Kow <[EMAIL PROTECTED]>**20070819205954
 Otherwise, you get annoying new changes in the working directory.
] 
[Use Data.Time.getCurrentTime instead of (System.)Time.getClockTime
shelarcy <[EMAIL PROTECTED]>**20070819204230
 to avoid build failure by generated non-UTF8 String
] 
[Add Drag & Drop and ClipBoard Support
shelarcy <[EMAIL PROTECTED]>**20070815175137] 
[Add (Multi-)MediaCtrl Support
shelarcy <[EMAIL PROTECTED]>**20070811123742] 
[Rework wxToolkit and isDefined by fixing *defs' char array to wxChar array
shelarcy <[EMAIL PROTECTED]>**20070806121930] 
[Change some str* functions or wcs* functions to wxStr* functions
shelarcy <[EMAIL PROTECTED]>**20070805112624] 
[Remove unused wxh directory files
shelarcy <[EMAIL PROTECTED]>**20070803123528] 
[Remove unused wxWidgets 2.5.x's VC project
shelarcy <[EMAIL PROTECTED]>**20070803120930] 
[Add VC project for wxWidgets 2.6.4
shelarcy <[EMAIL PROTECTED]>**20070803120733] 
[Fix broken wxc-2.4 Visual Studio Project
shelarcy <[EMAIL PROTECTED]>**20070723214850] 
[polyline-64bit-compatibility-fix
[EMAIL PROTECTED]
 Fixes a problem with the polyline function on a 64-bit platform.
 The wxDC_DrawLines function now properly indexes into the array
 with points.
] 
[fix-polygon-behaviour-64
[EMAIL PROTECTED]
 Fixed issue 'Strange polygon behaviour on 64-bit machines'
 reported by Chris Mears at 14 Dec 2006.
   
 Problem: the arrays inspected by the wxDC_Polygon function
 are assumed to contain 32-bits ints. On 64-bit machines
 these are actually 64-bits ints.
   
 Fix: (a bit of a hack...) the code now assumes that the
 arrays contain intptr_t values. This type represents ints
 of the same number of bits as the Haskell ints (on 32-bit
 and 64-bit machines). The code now dereferences each element
 in the array correctly, but still truncates the possibly
 64-bit value to a 32-bit value. This is not a problem
 in practice.
] 
[Announce new maintainers, darcs (homepage).
Eric Kow <[EMAIL PROTECTED]>**20070120231403] 
[Add miscellaneous other images (homepage).
Eric Kow <[EMAIL PROTECTED]>**20070120224435] 
[Add application screenshots (homepage).
Eric Kow <[EMAIL PROTECTED]>**20070120224104] 
[Add images used in quick start (homepage).
Eric Kow <[EMAIL PROTECTED]>**20070120223650] 
[Add images used for samples (homepage).
Eric Kow <[EMAIL PROTECTED]>**20070120223301] 
[Add images directory (and wxhaskell logo).
Eric Kow <[EMAIL PROTECTED]>**20070120222724] 
[Remove counter code from homepage.
Eric Kow <[EMAIL PROTECTED]>**20070120221619
 
 This counter has an pop-up ads, which is rather obnoxious.
 
] 
[Add wxhaskell homepage files (main html, css only).
Eric Kow <[EMAIL PROTECTED]>**20070120221304
 
 I took the liberty of running dos2unix on these.
 
] 
[Add some wxhaskell-specifile boring file regexps.
Eric Kow <[EMAIL PROTECTED]>**20070120221235] 
[Use a custom boring file. (Right now just the darcs default)
Eric Kow <[EMAIL PROTECTED]>**20070120221223] 
[Add an etc/ directory for misc use.
Eric Kow <[EMAIL PROTECTED]>**20070120212146] 
[Modify wx-install so it doesn't accidentally recompile things.
Eric Kow <[EMAIL PROTECTED]>**20070120225914
 
] 
[Merge wxStyledTextCntrl (Scintilla edit control wrapper) support from Haste project
shelarcy <[EMAIL PROTECTED]>**20070111090641] 
[Added #ifndef compilation flag around <inttypes.h> to avoid building problem under Visual C++ (VC). (VC doesn't have <inttypes.h>.)
[EMAIL PROTECTED] 
[Correct previous patch for db.cpp
[EMAIL PROTECTED] 
[Add an eyeball test for Unicode strings.
Eric Kow <[EMAIL PROTECTED]>**20061129042230] 
[Use intptr_t to avoid assumption that integers are 32 bit.
Arie Middelkoop <[EMAIL PROTECTED]>**20061125125628
 
 Compiling wxHaskell on a 64bits platform fails, because there
 are some assumptions in the code that assume that integers are
 32bits. For example, there are a couple of assignments of a
 pointer to an int.
   
 This patch fixes these problems. Sometimes, after assigning a
 pointer to an integer, the int was used as a boolean value. In
 those cases, instead of returning a pointer p, I changed the
 code to return p != NULL. In two other cases, a pointer is stored
 inside the int and in these cases I changed the type of the
 int to intptr_t, of which it is guaranteed that a pointer can be
 assigned to it and recovered from it.
 
 Requires <inttypes.h>.
 
] 
[Added the -fPIC compiler flag to CXX options in the makefile.
Arie Middelkoop <[EMAIL PROTECTED]>**20061115121006
 
 Apparantly, my platform (gentoo x86_64 linux) required that .o files are "relocatable" when there 
 are linked into a dynamic library.
 
 (It might be an idea to use libtool to hide this kind of platform-specific details)
 
] 
[Tweak wx build target to depend on wxcore-clean.
Eric Kow <[EMAIL PROTECTED]>**20061115002142
 
 This avoids weird build errors with GHC 6.6 like
 wx/src/Graphics/UI/WX/Types.hs:94:0:
     Bad interface file: out/wx/imports/Graphics/UI/WXCore/Types.hi
         Something is amiss; requested module
 
] 
[Update Windows/VC++ build for 0.10.1 (from [EMAIL PROTECTED]).
Eric Kow <[EMAIL PROTECTED]>**20061029082957
 
] 
[Separate make/make install for wxcore and wx.
Eric Kow <[EMAIL PROTECTED]>**20061027201218
 
 Now the user has to type
  make
  (sudo) make install
  make wx
  (sudo) make wx-install
 
 This is a tweak of Shelarcy's patch for making wxhaskell compile on GHC 6.6.
 The intention is to avoid the surprising behaviour of wxcore being installed
 when the user types 'make'.
 
] 
[Add shelarcy patch for compile with GHC-6.6
[EMAIL PROTECTED] 
[Add support for toolbar divider and other toolbar options (from [EMAIL PROTECTED])
[EMAIL PROTECTED] 
[Add support for toolbar divider (for [EMAIL PROTECTED])
[EMAIL PROTECTED] 
[Add support for list item mask (from [EMAIL PROTECTED])
[EMAIL PROTECTED] 
[Add support for Calendar events (from [EMAIL PROTECTED])
[EMAIL PROTECTED] 
[Add support for wxWidgets version >= 2.5 (Sound API, db API)
[EMAIL PROTECTED] 
[Shelarcy patch: fix typos in wxHaskell samples/contrib
[EMAIL PROTECTED] 
[(OS X) Skip intermediate step of compiling master.o.
Eric Kow <[EMAIL PROTECTED]>**20060813212620
 
 Removing this step (which compiles master.o, and combines it with other
 stuff to get the real library we want) avoids weird error messages like
 
 ld: out/wxc/master.o undefined symbol 36218 (__ZdaPv) can't be a weak
 definition
 
 It's quite possible that this breaks something else, though...
 
] 
[Update VC++ project file to reflect new wxWidgets version support (untested)
[EMAIL PROTECTED] 
[Update VC++ project file to reflect updated DLL version supporting wxWidgets 2.6.3
[EMAIL PROTECTED] 
[Update revision numbers and wxversion guesses for Windows / VC++ ([EMAIL PROTECTED])
[EMAIL PROTECTED] 
[Shelarcy patch (VC project for wxWindows 2.6.3)
[EMAIL PROTECTED] 
[Shelarcy patch (WxcTypes.hs)
[EMAIL PROTECTED] 
[Shelarcy patch (eljdialup.cpp)
[EMAIL PROTECTED] 
[Shelarcy patch (db.cpp)
[EMAIL PROTECTED] 
[(wxc, Unicode) Files for compiling unicode version under Visual Studio.
shelarcy <[EMAIL PROTECTED]>**20060813212315
 
 This is Eric Kow recording on Shelarcy's behalf.  This corresponds to version
 08 of my Unicode patch.
 
] 
[Add a small makefile for compiling the samples.
Eric Kow <[EMAIL PROTECTED]>**20060813211705
 
 (This comes from version 08 of my Unicode patch).
 
] 
[(wxcore, Unicode) Add/use ability to interact with C wchar_t.
Eric Kow <[EMAIL PROTECTED]>**20060813211211
 
 This corresponds to the wxcore part of my Unicode patch, version 08
 modulo trailing whitespace.
 
 I believe this would require for wxWidgets and wxhaskell to be compiled with
 Unicode enabled.
 
] 
[(wxdirect, Unicode) Use the Haskell types for C wchar_t and friends.
Eric Kow <[EMAIL PROTECTED]>**20060813210420
 
 I believe this would require that wxWidgets be compiled with Unicode
 enabled.
 
] 
[(wxc, Unicode) Use wxChar instead of char.
Eric Kow <[EMAIL PROTECTED]>**20060813205557
 
 wxChar is a C preprocessor macro that selects for char under
 --disable-unicode, and for wchar_t under --enable-unicode.
 
 This corresponds to version 08 of my Unicode patch, but only the parts
 which affect wxc.
 
] 
[[wxhaskell-from-cvs @ 2005-05-08 08:12:51 by dleijen]
dleijen**20050508081251
 updated change log
] 
[[wxhaskell-from-cvs @ 2005-05-08 07:24:23 by dleijen]
dleijen**20050508072423
 Compile wx via -fvia-C to fix crash with ghci on windows
] 
[TAG wxhakell-0-9-4
Unknown tagger**20060712042545] 
Patch bundle hash:
99b54c03c2eb4382e104ae2ad8068a4b81c5440d
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
wxhaskell-users mailing list
wxhaskell-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxhaskell-users

Reply via email to