[project @ 2001-05-18 09:18:05 by simonmar]
[ghc-hetmet.git] / ghc / compiler / compMan / CmStaticInfo.lhs
1 %
2 % (c) The University of Glasgow, 2000
3 %
4 \section[CmStaticInfo]{Session-static info for the Compilation Manager}
5
6 \begin{code}
7 module CmStaticInfo ( GhciMode(..), PackageConfig(..), defaultPackageConfig )
8 where
9
10 #include "HsVersions.h"
11
12 \end{code}
13
14 \begin{code}
15 data GhciMode = Batch | Interactive | OneShot 
16      deriving Eq
17
18 #include "../utils/ghc-pkg/Package.hs"
19 \end{code}