summaryrefslogtreecommitdiff
path: root/dev-haskell/constraints/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-haskell/constraints/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-haskell/constraints/files')
-rw-r--r--dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch b/dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch
deleted file mode 100644
index 1b2f8169c45d..000000000000
--- a/dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/Data/Constraint.hs b/Data/Constraint.hs
-index 84d67c0..a104f51 100644
---- a/Data/Constraint.hs
-+++ b/Data/Constraint.hs
-@@ -79,3 +79,7 @@ import Data.Data
- #endif
-+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 707
-+import GHC.Exts (Constraint)
-+#else
- import GHC.Prim (Constraint)
-+#endif
-
-@@ -375,3 +379,3 @@ instance Class () (b :=> a) where cls = Sub Dict
- instance Class b a => () :=> Class b a where ins = Sub Dict
--instance (b :=> a) => () :=> b :=> a where ins = Sub Dict
-+instance (b :=> a) => () :=> (b :=> a) where ins = Sub Dict
-