[GHC] #9275: Missing import statement in GHC.Event.Poll
GHC
ghc-devs at haskell.org
Sun Jul 6 18:49:54 UTC 2014
#9275: Missing import statement in GHC.Event.Poll
----------------------------------------+----------------------------------
Reporter: ydewit | Owner:
Type: bug | Status: patch
Priority: normal | Milestone:
Component: libraries/base | Version: 7.8.2
Resolution: | Keywords:
Operating System: MacOS X | Architecture:
Type of failure: Building GHC failed | Unknown/Multiple
Test Case: | Difficulty: Unknown
Blocking: | Blocked By:
| Related Tickets:
----------------------------------------+----------------------------------
Changes (by ydewit):
* status: new => patch
Comment:
Here is the patch:
{{{
diff --git a/GHC/Event/Poll.hsc b/GHC/Event/Poll.hsc
index bb0b6e5..2ed25be 100644
--- a/GHC/Event/Poll.hsc
+++ b/GHC/Event/Poll.hsc
@@ -14,6 +14,7 @@ module GHC.Event.Poll
#if !defined(HAVE_POLL_H)
import GHC.Base
+import qualified GHC.Event.Internal as E
new :: IO E.Backend
new = error "Poll back end not implemented for this platform"
}}}
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/9275#comment:2>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list