diff options
author | Ian Lynagh <igloo@earth.li> | 2009-10-30 16:09:08 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-10-30 16:09:08 +0000 |
commit | 94fd9ad3745d9d270648aa5d7d87f49a0dafabd4 (patch) | |
tree | 4b27a03e173296b1452b7e3872ee229e3ff9df8b /compiler/specialise | |
parent | 40b82d31494eabb51ef2eb47d6e6191e0db764fd (diff) | |
download | haskell-94fd9ad3745d9d270648aa5d7d87f49a0dafabd4.tar.gz |
Fix the build with GHC 6.8
Diffstat (limited to 'compiler/specialise')
-rw-r--r-- | compiler/specialise/SpecConstr.lhs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/specialise/SpecConstr.lhs b/compiler/specialise/SpecConstr.lhs index f366cd7764..c545fade7a 100644 --- a/compiler/specialise/SpecConstr.lhs +++ b/compiler/specialise/SpecConstr.lhs @@ -53,7 +53,11 @@ import qualified LazyUniqFM as L import MonadUtils import Control.Monad ( zipWithM ) import Data.List +#if __GLASGOW_HASKELL__ > 609 import Data.Data ( Data, Typeable ) +#else +import Data.Generics ( Data, Typeable ) +#endif \end{code} ----------------------------------------------------- |