Repository : ssh://darcs.haskell.org//srv/darcs/packages/process On branch : master
http://hackage.haskell.org/trac/ghc/changeset/34284da4465232888b132ffe40f1c44598bd2428 >--------------------------------------------------------------- commit 34284da4465232888b132ffe40f1c44598bd2428 Author: Ian Lynagh <[email protected]> Date: Sun Oct 23 19:06:22 2011 +0100 Fix build on Windows >--------------------------------------------------------------- System/Process.hs | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/System/Process.hs b/System/Process.hs index 1b50100..0754386 100644 --- a/System/Process.hs +++ b/System/Process.hs @@ -71,7 +71,9 @@ import Prelude hiding (mapM) import System.Process.Internals import System.IO.Error -import System.Posix.Types as Z +#if !defined(mingw32_HOST_OS) +import System.Posix.Types +#endif import qualified Control.Exception as C import Control.Concurrent import Control.Monad _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
