From 2f3ab1d82bc4d5c66916f650960c25609b1189fe Mon Sep 17 00:00:00 2001 From: simonpj Date: Fri, 12 Nov 2004 14:09:39 +0000 Subject: [PATCH] [project @ 2004-11-12 14:09:39 by simonpj] Windows fix (include config.h) --- ghc/lib/compat/Compat/RawSystem.hs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghc/lib/compat/Compat/RawSystem.hs b/ghc/lib/compat/Compat/RawSystem.hs index 2d88c29..196201a 100644 --- a/ghc/lib/compat/Compat/RawSystem.hs +++ b/ghc/lib/compat/Compat/RawSystem.hs @@ -16,6 +16,10 @@ module Compat.RawSystem (rawSystem) where +#if __GLASGOW_HASKELL__ < 603 +#include "config.h" +#endif + #if __GLASGOW_HASKELL__ >= 603 import System.Cmd (rawSystem) -- 1.7.10.4