Repository : ssh://darcs.haskell.org//srv/darcs/packages/process On branch : master
http://hackage.haskell.org/trac/ghc/changeset/fa5db2b9bd85d951579447876cc82220b8fb5a0b >--------------------------------------------------------------- commit fa5db2b9bd85d951579447876cc82220b8fb5a0b Author: Simon Marlow <[email protected]> Date: Wed May 25 15:48:39 2011 +0100 fix build with GHC <= 7.0.1 (#5215) >--------------------------------------------------------------- System/Process.hs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/System/Process.hs b/System/Process.hs index f2e2e7c..367334a 100644 --- a/System/Process.hs +++ b/System/Process.hs @@ -617,8 +617,8 @@ foreign import ccall unsafe "getProcessExitCode" -> Ptr CInt -> IO CInt -#if __GLASGOW_HASKELL__ < 700 --- not available prior to 700 +#if __GLASGOW_HASKELL__ < 701 +-- not available prior to 7.1 #define interruptible safe #endif _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
