From: rrt Date: Wed, 16 Aug 2000 15:29:34 +0000 (+0000) Subject: [project @ 2000-08-16 15:29:34 by rrt] X-Git-Tag: Approximately_9120_patches~3881 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=67baef1313c8e65851305a58f9e7004ff4e4514f;p=ghc-hetmet.git [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. --- 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