summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2010-04-22 13:09:27 +0000
committerhallgren <hallgren@chalmers.se>2010-04-22 13:09:27 +0000
commitba7467a550b83c942fbeb414667697337d3ca3a9 (patch)
tree95a57b513f8e75852e4ae5c51165188466ef8d28
parent9db279b24b32aa48892c807cf0a477811ef01234 (diff)
Require GHC >=6.12, and add a homepage field in GF.cabal
I assume checking for base>=4.2 is a good way to test for the presence of the new Unicode-aware I/O libraries (first shipped with GHC 6.12) that GF now relies on.
-rw-r--r--GF.cabal5
1 files changed, 3 insertions, 2 deletions
diff --git a/GF.cabal b/GF.cabal
index 30dfe1d21..629638da0 100644
--- a/GF.cabal
+++ b/GF.cabal
@@ -5,13 +5,14 @@ build-type: Custom
license: GPL
license-file: LICENSE
synopsis: Grammatical Framework
+homepage: http://www.grammaticalframework.org
flag interrupt
Description: Enable Ctrl+Break in the shell
Default: True
library
- build-depends: base >= 4.1,
+ build-depends: base >= 4.2 && <5,
array,
containers,
bytestring,
@@ -52,7 +53,7 @@ library
Data.Binary.Builder
executable gf
- build-depends: base >= 4.1,
+ build-depends: base >= 4.2,
array,
containers,
bytestring,