[project @ 2003-02-21 04:57:16 by sof]
authorsof <unknown>
Fri, 21 Feb 2003 04:57:16 +0000 (04:57 +0000)
committersof <unknown>
Fri, 21 Feb 2003 04:57:16 +0000 (04:57 +0000)
deja vu all over again

ghc/compiler/utils/Panic.lhs

index efb3c6a..b47ff7f 100644 (file)
@@ -22,17 +22,18 @@ module Panic
    ) where
 
 #include "HsVersions.h"
+#include "config.h"
 
 import Config
 import FastTypes
 
-#if __GLASGOW_HASKELL__ > 504
+#ifndef mingw32_HOST_OS
+# if __GLASGOW_HASKELL__ > 504
 import System.Posix.Signals
-#else
+# else
 import Posix           ( Handler(Catch), installHandler, sigINT, sigQUIT )
-#endif
+# endif
 
-#ifndef mingw32_HOST_OS
 import CONCURRENT      ( myThreadId )
 
 # if __GLASGOW_HASKELL__ < 500