[Pkg-haskell-commits] darcs: haskell-glut: debian/patches/FFI-needs-constructor: GHC 7.4.1 compatibitliy patch.

Joachim Breitner mail at joachim-breitner.de
Sat Feb 25 15:25:48 UTC 2012


Sat Feb 25 15:24:11 UTC 2012  Joachim Breitner <mail at joachim-breitner.de>
  * debian/patches/FFI-needs-constructor: GHC 7.4.1 compatibitliy patch.
  Ignore-this: 4548c91294a0fc31549b456d68a8af8e

    M ./changelog +6
    A ./patches/
    A ./patches/FFI-needs-constructor
    A ./patches/series

Sat Feb 25 15:24:11 UTC 2012  Joachim Breitner <mail at joachim-breitner.de>
  * debian/patches/FFI-needs-constructor: GHC 7.4.1 compatibitliy patch.
  Ignore-this: 4548c91294a0fc31549b456d68a8af8e
diff -rN -u old-haskell-glut//changelog new-haskell-glut//changelog
--- old-haskell-glut//changelog	2012-02-25 15:25:48.130024210 +0000
+++ new-haskell-glut//changelog	2012-02-25 15:25:48.143251022 +0000
@@ -1,3 +1,9 @@
+haskell-glut (2.1.2.1-3) UNRELEASED; urgency=low
+
+  * debian/patches/FFI-needs-constructor: GHC 7.4.1 compatibitliy patch.
+
+ -- Joachim Breitner <nomeata at debian.org>  Mon, 13 Feb 2012 22:22:21 +0100
+
 haskell-glut (2.1.2.1-2) unstable; urgency=low
 
   [ Marco Silva ]
diff -rN -u old-haskell-glut//patches/FFI-needs-constructor new-haskell-glut//patches/FFI-needs-constructor
--- old-haskell-glut//patches/FFI-needs-constructor	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-glut//patches/FFI-needs-constructor	2012-02-25 15:25:48.139250910 +0000
@@ -0,0 +1,25 @@
+Description: FFI needs to the the constructor of newtypes
+Author: Joachim Breitner <nomeata at debian.org>
+
+--- haskell-glut-2.1.2.1.orig/Graphics/UI/GLUT/Types.hs
++++ haskell-glut-2.1.2.1/Graphics/UI/GLUT/Types.hs
+@@ -15,7 +15,7 @@
+ --------------------------------------------------------------------------------
+ 
+ module Graphics.UI.GLUT.Types (
+-   Window,                                   -- constructor used only internally
++   Window(..),                                   -- constructor used only internally
+    makeWindow,                               -- used only internally
+    Relation(..),
+    relationToString,                         -- used only internally
+--- haskell-glut-2.1.2.1.orig/Graphics/UI/GLUT/Window.hs
++++ haskell-glut-2.1.2.1/Graphics/UI/GLUT/Window.hs
+@@ -73,7 +73,7 @@ import Graphics.UI.GLUT.Constants (
+    glut_WINDOW_CURSOR )
+ import Graphics.UI.GLUT.Extensions
+ import Graphics.UI.GLUT.QueryUtils ( simpleGet )
+-import Graphics.UI.GLUT.Types ( Window, makeWindow )
++import Graphics.UI.GLUT.Types ( Window(..), makeWindow )
+ 
+ --------------------------------------------------------------------------------
+ 
diff -rN -u old-haskell-glut//patches/series new-haskell-glut//patches/series
--- old-haskell-glut//patches/series	1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-glut//patches/series	2012-02-25 15:25:48.139250910 +0000
@@ -0,0 +1 @@
+FFI-needs-constructor





More information about the Pkg-haskell-commits mailing list