Repository : ssh://darcs.haskell.org//srv/darcs/packages/deepseq On branch : master
http://hackage.haskell.org/trac/ghc/changeset/5333bc3ee8e8e085871ff233d0ed4440c2ae0168 >--------------------------------------------------------------- commit 5333bc3ee8e8e085871ff233d0ed4440c2ae0168 Author: Ian Lynagh <[email protected]> Date: Thu Sep 8 13:38:17 2011 +0100 Only use Safe Haskell if using GHC >= 7.3 In 7.2, array wasn't using Safe Haskell, so we can't either. >--------------------------------------------------------------- Control/DeepSeq.hs | 2 +- deepseq.cabal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Control/DeepSeq.hs b/Control/DeepSeq.hs index 021fb74..a7ed499 100644 --- a/Control/DeepSeq.hs +++ b/Control/DeepSeq.hs @@ -1,4 +1,4 @@ -#if __GLASGOW_HASKELL__ >= 701 +#if __GLASGOW_HASKELL__ >= 703 {-# LANGUAGE Safe #-} #endif ----------------------------------------------------------------------------- diff --git a/deepseq.cabal b/deepseq.cabal index 9659cca..179812c 100644 --- a/deepseq.cabal +++ b/deepseq.cabal @@ -1,5 +1,5 @@ name: deepseq -version: 1.2.0.0 +version: 1.2.0.1 license: BSD3 license-file: LICENSE maintainer: [email protected] _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
