aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Signals.hsc
diff options
context:
space:
mode:
authorGravatar Ian Lynagh <ian@well-typed.com>2012-11-30 22:45:55 +0000
committerGravatar Ian Lynagh <ian@well-typed.com>2012-11-30 22:45:55 +0000
commite12ccd7203ac3f0133365a9d3d802195e534fd8e (patch)
tree621cecc877925383670ea20bfa45f7c140aafa38 /System/Posix/Signals.hsc
parent3db0f40d3b3d27246599845b9f0f09ae0a88cd02 (diff)
Bump base lower version to 4.5 (the version GHC 7.4.1 came with)
and remove code to support older versions
Diffstat (limited to 'System/Posix/Signals.hsc')
-rw-r--r--System/Posix/Signals.hsc6
1 files changed, 1 insertions, 5 deletions
diff --git a/System/Posix/Signals.hsc b/System/Posix/Signals.hsc
index 722cada..da12acd 100644
--- a/System/Posix/Signals.hsc
+++ b/System/Posix/Signals.hsc
@@ -1,6 +1,6 @@
{-# LANGUAGE DeriveDataTypeable, PatternGuards, CApiFFI #-}
{-# OPTIONS_GHC -fno-cse #-} -- global variables
-#if __GLASGOW_HASKELL__ >= 701
+#ifdef __GLASGOW_HASKELL__
{-# LANGUAGE Trustworthy #-}
#endif
-----------------------------------------------------------------------------
@@ -112,11 +112,7 @@ import System.Posix.Process.Internals
import Data.Dynamic
#ifdef __GLASGOW_HASKELL__
-#if __GLASGOW_HASKELL__ >= 611
##include "rts/Signals.h"
-#else
-##include "Signals.h"
-#endif
import GHC.Conc hiding (Signal)
#endif