diff options
| author | hallgren <hallgren@chalmers.se> | 2014-04-22 14:38:33 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2014-04-22 14:38:33 +0000 |
| commit | 570a41761536aaf93946ab1ea430117c45184dbf (patch) | |
| tree | 351778c0bd4df62a21a455180966b62b326c2c7c | |
| parent | b70cea2673e86889ce7c8da00303867ee12a05fc (diff) | |
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).
| -rw-r--r-- | gf.cabal | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
