From 9135f93e510ae9b0cdb09f95ce9f49568f3b385b Mon Sep 17 00:00:00 2001 From: hallgren Date: Tue, 22 Apr 2014 14:38:33 +0000 Subject: [PATCH] gf.cabal: require base>=4.3 This makes it explicit that we no longer support compiling GF with GHC 6.12 (which is 4 years old and comes with base-4.2). --- gf.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gf.cabal b/gf.cabal index 298edc892..b0b23cc49 100644 --- a/gf.cabal +++ b/gf.cabal @@ -63,7 +63,7 @@ flag c-runtime Library default-language: Haskell2010 - build-depends: base >= 4.2 && <5, + build-depends: base >= 4.3 && <5, array, fst, containers, @@ -132,7 +132,7 @@ Library Executable gf default-language: Haskell2010 build-depends: gf, - base >= 4.2 && <5, + base >= 4.3 && <5, array, containers, bytestring, @@ -277,5 +277,5 @@ test-suite gf-tests type: exitcode-stdio-1.0 main-is: run.hs hs-source-dirs: testsuite - build-depends: base>=4.2 && <5, Cabal>=1.8, directory, filepath, process + build-depends: base>=4.3 && <5, Cabal>=1.8, directory, filepath, process default-language: Haskell2010