From: simonm Date: Wed, 26 Nov 1997 10:24:18 +0000 (+0000) Subject: [project @ 1997-11-26 10:24:18 by simonm] X-Git-Tag: Approx_2487_patches~1228 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=02c0c7fe511962f98f4ebb2646e9845582b6b63e;p=ghc-hetmet.git [project @ 1997-11-26 10:24:18 by simonm] fix for booting with 2.01 <= GHC < 2.09 --- 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}