From 02c0c7fe511962f98f4ebb2646e9845582b6b63e Mon Sep 17 00:00:00 2001 From: simonm Date: Wed, 26 Nov 1997 10:24:18 +0000 Subject: [PATCH] [project @ 1997-11-26 10:24:18 by simonm] fix for booting with 2.01 <= GHC < 2.09 --- ghc/compiler/reader/Lex.lhs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ghc/compiler/reader/Lex.lhs b/ghc/compiler/reader/Lex.lhs index 8b19bd3..0affa57 100644 --- a/ghc/compiler/reader/Lex.lhs +++ b/ghc/compiler/reader/Lex.lhs @@ -60,6 +60,9 @@ import StringBuffer import PreludeGlaST #else import GlaExts +#if __GLASGOW_HASKELL__ <= 209 +import ST ( thenST, seqST ) +#endif #endif \end{code} -- 1.7.10.4