summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-forensics/quickfuzz/files/quickfuzz-0.1-QC-2.9.patch')
-rw-r--r--app-forensics/quickfuzz/files/quickfuzz-0.1-QC-2.9.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/app-forensics/quickfuzz/files/quickfuzz-0.1-QC-2.9.patch b/app-forensics/quickfuzz/files/quickfuzz-0.1-QC-2.9.patch
deleted file mode 100644
index 1cbf88deecc7..000000000000
--- a/app-forensics/quickfuzz/files/quickfuzz-0.1-QC-2.9.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/src/Misc.hs b/src/Misc.hs
-index 1aa0699..c514ae9 100644
---- a/src/Misc.hs
-+++ b/src/Misc.hs
-@@ -1,9 +1,12 @@
-+{-# LANGUAGE CPP #-}
- module Misc where
-
- import Test.QuickCheck
- import Data.Map
- import Data.Monoid
-
-+#if ! MIN_VERSION_QuickCheck(2,9,0)
-+
- instance Arbitrary a => Arbitrary (Last a) where
- arbitrary = do
- ga <- arbitrary
-@@ -43,3 +46,5 @@ instance (Arbitrary a, Arbitrary b, Arbitrary c, Arbitrary d, Arbitrary e, Arbit
- x6 <- arbitrary
- x7 <- arbitrary
- return (x1,x2,x3,x4,x5,x6,x7)
-+
-+#endif