1
0
forked from GitHub/gf-core

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).
This commit is contained in:
hallgren
2014-04-22 14:38:33 +00:00
parent 68c8d3cba8
commit 9135f93e51

View File

@@ -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