From 67baef1313c8e65851305a58f9e7004ff4e4514f Mon Sep 17 00:00:00 2001 From: rrt Date: Wed, 16 Aug 2000 15:29:34 +0000 Subject: [PATCH] [project @ 2000-08-16 15:29:34 by rrt] Change use of HAVE_WIN32_DLL_SUPPORT to ENABLE_WIN32_DLL_SUPPORT, to stop things going horribly wrong with static linking on win32. --- ghc/includes/ClosureMacros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/includes/ClosureMacros.h b/ghc/includes/ClosureMacros.h index 6e3922e..2033348 100644 --- a/ghc/includes/ClosureMacros.h +++ b/ghc/includes/ClosureMacros.h @@ -1,5 +1,5 @@ /* ---------------------------------------------------------------------------- - * $Id: ClosureMacros.h,v 1.23 2000/08/07 23:37:23 qrczak Exp $ + * $Id: ClosureMacros.h,v 1.24 2000/08/16 15:29:34 rrt Exp $ * * (c) The GHC Team, 1998-1999 * @@ -182,7 +182,7 @@ extern void* DATA_SECTION_END_MARKER_DECL; # define IS_HUGS_CONSTR_INFO(info) 0 /* ToDo: more than mildly bogus */ #endif -#ifdef HAVE_WIN32_DLL_SUPPORT /* needed for mingw DietHEP */ +#ifdef ENABLE_WIN32_DLL_SUPPORT /* needed for mingw DietHEP */ # define LOOKS_LIKE_GHC_INFO(info) (!HEAP_ALLOCED(info) \ && !LOOKS_LIKE_STATIC_CLOSURE(info)) #else -- 1.7.10.4