From 428d3450363d94b7a0dc3829aad40c966d455961 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 16 Aug 2004 09:31:50 +0000 Subject: [PATCH 1/1] [project @ 2004-08-16 09:31:50 by simonmar] #ifdefery to work around change in name of config.h. --- ghc/utils/runghc/runghc.hs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghc/utils/runghc/runghc.hs b/ghc/utils/runghc/runghc.hs index 8adf9e9..be04cdf 100644 --- a/ghc/utils/runghc/runghc.hs +++ b/ghc/utils/runghc/runghc.hs @@ -1,5 +1,9 @@ {-# OPTIONS -cpp -fffi #-} +#if __GLASGOW_HASKELL__ < 603 #include "config.h" +#else +#include "ghcconfig.h" +#endif ----------------------------------------------------------------------------- -- -- (c) The University of Glasgow, 2004 -- 1.7.10.4