Gentoo Archives: gentoo-commits

From: "Mark Wright (gienah)" <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/wxcore/files: wxcore-0.90.1.1-ghc-7.5.patch
Date: Sun, 23 Mar 2014 15:03:58
Message-Id: 20140323150350.47E1420054@flycatcher.gentoo.org
1 gienah 14/03/23 15:03:50
2
3 Added: wxcore-0.90.1.1-ghc-7.5.patch
4 Log:
5 Bump wxcore to 0.90.1.1, loosen array dep in 0.13.2.3
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
8
9 Revision Changes Path
10 1.1 dev-haskell/wxcore/files/wxcore-0.90.1.1-ghc-7.5.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/wxcore/files/wxcore-0.90.1.1-ghc-7.5.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/wxcore/files/wxcore-0.90.1.1-ghc-7.5.patch?rev=1.1&content-type=text/plain
14
15 Index: wxcore-0.90.1.1-ghc-7.5.patch
16 ===================================================================
17 --- wxcore-0.90.1.1-orig/src/haskell/Graphics/UI/WXCore/Events.hs 2014-03-23 08:01:17.000000000 +1100
18 +++ wxcore-0.90.1.1/src/haskell/Graphics/UI/WXCore/Events.hs 2014-03-23 17:05:26.428738461 +1100
19 @@ -1,4 +1,4 @@
20 -{-# LANGUAGE ForeignFunctionInterface #-}
21 +{-# LANGUAGE CPP, ForeignFunctionInterface #-}
22 -----------------------------------------------------------------------------------------
23 {-| Module : Events
24 Copyright : (c) Daan Leijen 2003
25 @@ -248,6 +248,9 @@
26 import Foreign.Marshal.Alloc
27 import Foreign.Marshal.Array
28 import Foreign.Marshal.Utils
29 +#if (__GLASGOW_HASKELL__>=705)
30 +import Foreign.C.Types(CInt(..))
31 +#endif
32
33 import Data.Char ( chr ) -- used in stc
34 import Data.Maybe ( fromMaybe, fromJust )