From: Simon Marlow Date: Wed, 27 Jan 2010 14:57:18 +0000 (+0000) Subject: fix Windows build (GHC.Conc.runHandlers is Unix-only) X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=243c043271d295c98ac0f69b4bc8fccca3b61d2d;p=ghc-hetmet.git fix Windows build (GHC.Conc.runHandlers is Unix-only) --- diff --git a/rts/RtsStartup.c b/rts/RtsStartup.c index 8e2eac4..b0cddbd 100644 --- a/rts/RtsStartup.c +++ b/rts/RtsStartup.c @@ -184,7 +184,9 @@ hs_init(int *argc, char **argv[]) getStablePtr((StgPtr)runSparks_closure); getStablePtr((StgPtr)ensureIOManagerIsRunning_closure); +#ifndef mingw32_HOST_OS getStablePtr((StgPtr)runHandlers_closure); +#endif /* initialise the shared Typeable store */ initGlobalStore();