From e23c5e81c5548d958283df0671319fee2b320233 Mon Sep 17 00:00:00 2001 From: sewardj Date: Fri, 29 Jun 2001 16:58:06 +0000 Subject: [PATCH] [project @ 2001-06-29 16:58:06 by sewardj] Test for mingw32_TARGET_OS and cygwin32_TARGET_OS instead of WIN32. --- ghc/rts/MBlock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/rts/MBlock.h b/ghc/rts/MBlock.h index 18fe052..27bc859 100644 --- a/ghc/rts/MBlock.h +++ b/ghc/rts/MBlock.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: MBlock.h,v 1.8 2001/01/16 11:53:32 simonmar Exp $ + * $Id: MBlock.h,v 1.9 2001/06/29 16:58:06 sewardj Exp $ * * (c) The GHC Team, 1998-1999 * @@ -51,7 +51,7 @@ extern void * getMBlocks(nat n); /* guess */ #define HEAP_BASE 0x50000000 -#elif _WIN32 +#elif defined(mingw32_TARGET_OS) || defined(cygwin32_TARGET_OS) /* doesn't matter, we use a reserve/commit algorithm */ #else -- 1.7.10.4