diff options
author | Ian Lynagh <igloo@earth.li> | 2012-01-14 17:07:10 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-01-14 17:07:10 +0000 |
commit | 08894f96407635781a233145435a78f144accab0 (patch) | |
tree | 2d89fcddef28508720aacaa7d7eeba0b177415dc /compiler/ghc.cabal.in | |
parent | 7bc456d776608051163aa08cee48e21599e129ae (diff) | |
download | haskell-08894f96407635781a233145435a78f144accab0.tar.gz |
Switch to using the time package, rather than old-time
Diffstat (limited to 'compiler/ghc.cabal.in')
-rw-r--r-- | compiler/ghc.cabal.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index a9d86f88be..51ae1542e3 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -61,11 +61,14 @@ Library if !flag(base3) && !flag(base4) Build-Depends: base < 3 + if flag(stage1) && impl(ghc < 7.5) + Build-Depends: old-time >= 1 && < 1.1 + if flag(base3) || flag(base4) Build-Depends: directory >= 1 && < 1.2, process >= 1 && < 1.2, bytestring >= 0.9 && < 0.10, - old-time >= 1 && < 1.1, + time < 1.5, containers >= 0.1 && < 0.5, array >= 0.1 && < 0.4 |