summaryrefslogtreecommitdiff
blob: 08f0f5bc27d2b90f0c7321c38c05681192645d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- wxcore-0.90.0.1-orig/wxcore.cabal	2012-05-15 06:26:55.000000000 +1000
+++ wxcore-0.90.0.1/wxcore.cabal	2012-05-19 21:32:01.230849131 +1000
@@ -80,7 +80,7 @@
     build-depends:
       array >= 0.2 && < 0.5,
       base >= 4 && < 5,
-      containers >= 0.2 && < 0.5
+      containers >= 0.2 && < 0.6
   else
     build-depends:
       array >= 0.1 && < 0.3,
--- wxcore-0.90.0.1-orig/src/haskell/Graphics/UI/WXCore/Events.hs	2012-05-15 06:26:55.000000000 +1000
+++ wxcore-0.90.0.1/src/haskell/Graphics/UI/WXCore/Events.hs	2012-05-19 21:44:09.457185166 +1000
@@ -1,4 +1,4 @@
-{-# LANGUAGE ForeignFunctionInterface #-}
+{-# LANGUAGE CPP, ForeignFunctionInterface #-}
 -----------------------------------------------------------------------------------------
 {-|	Module      :  Events
 	Copyright   :  (c) Daan Leijen 2003
@@ -245,6 +245,9 @@
 import Foreign.Marshal.Alloc
 import Foreign.Marshal.Array
 import Foreign.Marshal.Utils
+#if (__GLASGOW_HASKELL__>=705)
+import Foreign.C.Types(CInt(..))
+#endif
 
 import Data.Char ( chr ) -- used in stc
 import Data.Maybe ( fromMaybe, fromJust )