Repository : ssh://darcs.haskell.org//srv/darcs/packages/process

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/cb77b71fa2018eb2993274cda9aa0882bd0ccb3f

>---------------------------------------------------------------

commit cb77b71fa2018eb2993274cda9aa0882bd0ccb3f
Author: Ian Lynagh <[email protected]>
Date:   Mon Jul 11 23:32:00 2011 +0100

    System/Process.hs needs the InterruptibleFFI extension

>---------------------------------------------------------------

 System/Process.hs |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/System/Process.hs b/System/Process.hs
index 1c7ac68..45401d4 100644
--- a/System/Process.hs
+++ b/System/Process.hs
@@ -1,4 +1,8 @@
 {-# LANGUAGE CPP, ForeignFunctionInterface #-}
+#if __GLASGOW_HASKELL__ >= 701
+-- not available prior to 7.1
+{-# LANGUAGE InterruptibleFFI #-}
+#endif
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  System.Process



_______________________________________________
Cvs-libraries mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/cvs-libraries

Reply via email to