From: simonmar Date: Mon, 3 Mar 2003 12:30:11 +0000 (+0000) Subject: [project @ 2003-03-03 12:30:11 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~1099 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ac04a368e76592978fde8cc1881312f3d5db8d79;p=ghc-hetmet.git [project @ 2003-03-03 12:30:11 by simonmar] Compilation fix after recent addition of environment stuff to System.Posix. --- diff --git a/ghc/compiler/ghci/InteractiveUI.hs b/ghc/compiler/ghci/InteractiveUI.hs index b8f75de..e0b913f 100644 --- a/ghc/compiler/ghci/InteractiveUI.hs +++ b/ghc/compiler/ghci/InteractiveUI.hs @@ -1,6 +1,6 @@ {-# OPTIONS -#include "Linker.h" #-} ----------------------------------------------------------------------------- --- $Id: InteractiveUI.hs,v 1.148 2003/02/24 12:39:26 simonpj Exp $ +-- $Id: InteractiveUI.hs,v 1.149 2003/03/03 12:30:11 simonmar Exp $ -- -- GHC Interactive User Interface -- @@ -47,6 +47,9 @@ import Config #ifndef mingw32_HOST_OS import System.Posix +#if __GLASGOW_HASKELL__ > 504 + hiding (getEnv) +#endif #endif #if HAVE_READLINE_HEADERS && HAVE_READLINE_LIBS