Skip to content
Snippets Groups Projects
Commit 2c67f759 authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Add System.Timeout to base.cabal

Filtered out for non-GHC by Setup.hs.
parent 5550d91e
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ isPortableBuild :: String -> Bool ...@@ -120,7 +120,7 @@ isPortableBuild :: String -> Bool
isPortableBuild s isPortableBuild s
| "GHC" `isPrefixOf` s = False | "GHC" `isPrefixOf` s = False
| "Data.Generics" `isPrefixOf` s = False | "Data.Generics" `isPrefixOf` s = False
| otherwise = s `notElem` ["Foreign.Concurrent"] | otherwise = s `notElem` ["Foreign.Concurrent", "System.Timeout"]
forGHCBuild :: String -> Bool forGHCBuild :: String -> Bool
forGHCBuild = ("GHC.Prim" /=) forGHCBuild = ("GHC.Prim" /=)
......
...@@ -149,6 +149,7 @@ exposed-modules: ...@@ -149,6 +149,7 @@ exposed-modules:
System.Posix.Internals, System.Posix.Internals,
System.Posix.Signals, System.Posix.Signals,
System.Posix.Types, System.Posix.Types,
System.Timeout,
Text.ParserCombinators.ReadP, Text.ParserCombinators.ReadP,
Text.ParserCombinators.ReadPrec, Text.ParserCombinators.ReadPrec,
Text.Printf, Text.Printf,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment