diff options
author | pho <pho@pkgsrc.org> | 2020-01-16 11:38:40 +0000 |
---|---|---|
committer | pho <pho@pkgsrc.org> | 2020-01-16 11:38:40 +0000 |
commit | 69beff3a8030828d462127524e1f269d7fa3d432 (patch) | |
tree | f76a7512baf763b93a1db9166cb8b0ac37814684 /textproc | |
parent | 863e005ec18733ddad9ae27c5971c2c51d666efd (diff) | |
download | pkgsrc-69beff3a8030828d462127524e1f269d7fa3d432.tar.gz |
Remove a patch: it's no longer needed
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/hs-cgrep/patches/patch-src_Config.hs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/textproc/hs-cgrep/patches/patch-src_Config.hs b/textproc/hs-cgrep/patches/patch-src_Config.hs deleted file mode 100644 index 4408ee83770..00000000000 --- a/textproc/hs-cgrep/patches/patch-src_Config.hs +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-src_Config.hs,v 1.1 2020/01/03 08:22:09 pho Exp $ - -Compatibility with GHC < 8 - ---- src/Config.hs.orig 2001-09-09 01:46:40.000000000 +0000 -+++ src/Config.hs -@@ -19,6 +19,11 @@ - {-# LANGUAGE DeriveGeneric #-} - {-# LANGUAGE RecordWildCards #-} - {-# LANGUAGE OverloadedStrings #-} -+{-# LANGUAGE CPP #-} -+ -+#if !MIN_VERSION_base(4,9,0) -+# define errorWithoutStackTrace error -+#endif - - module Config where - |