From: simonpj Date: Fri, 27 Oct 2000 15:40:01 +0000 (+0000) Subject: [project @ 2000-10-27 15:40:01 by simonpj] X-Git-Tag: Approximately_9120_patches~3476 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=403bcbb47a992484fdf805d2e9d0c538758abb01;p=ghc-hetmet.git [project @ 2000-10-27 15:40:01 by simonpj] Win32 hacks. --- diff --git a/ghc/compiler/main/DriverState.hs b/ghc/compiler/main/DriverState.hs index f7092fd..cfad97a 100644 --- a/ghc/compiler/main/DriverState.hs +++ b/ghc/compiler/main/DriverState.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: DriverState.hs,v 1.9 2000/10/27 14:56:00 sewardj Exp $ +-- $Id: DriverState.hs,v 1.10 2000/10/27 15:40:01 simonpj Exp $ -- -- Settings for the driver -- @@ -16,9 +16,12 @@ import CmdLineOpts import DriverUtil import Util import Config - import Exception import IOExts +#ifdef mingw32_TARGET_OS +import TmpFiles ( newTempName ) +import Directory ( removeFile ) +#endif import System import IO