From e415f297508a6cabc7ad46584e861da06e2e01a1 Mon Sep 17 00:00:00 2001
From: rrt <unknown>
Date: Mon, 7 Aug 2000 16:09:03 +0000
Subject: [PATCH] [project @ 2000-08-07 16:09:03 by rrt] Add COMPILING_STDLIB
 symbol analagous to COMPILING_RTS for the extern vars in stgio.h.

---
 ghc/includes/StgDLL.h      | 6 ++++++
 ghc/lib/std/cbits/Makefile | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/ghc/includes/StgDLL.h b/ghc/includes/StgDLL.h
index 599d9e8a756e..9a0730a3c935 100644
--- a/ghc/includes/StgDLL.h
+++ b/ghc/includes/StgDLL.h
@@ -41,4 +41,10 @@
 # endif
 #endif
 
+#ifdef COMPILING_STDLIB
+#define DLL_IMPORT_STDLIB
+#else
+#define DLL_IMPORT_STDLIB DLLIMPORT
+#endif
+
 #endif /* __STGDLL_H__ */
diff --git a/ghc/lib/std/cbits/Makefile b/ghc/lib/std/cbits/Makefile
index 44d1ac22f891..4e4303332f40 100644
--- a/ghc/lib/std/cbits/Makefile
+++ b/ghc/lib/std/cbits/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.22 2000/07/09 16:06:28 panne Exp $
+# $Id: Makefile,v 1.23 2000/08/07 16:09:03 rrt Exp $
 
 TOP = ../../..
 include $(TOP)/mk/boilerplate.mk
@@ -34,6 +34,7 @@ DLL_IMPLIB_NAME = libHSstd_cbits_imp.a
 DLL_DESCRIPTION = "Haskell Prelude helpers"
 SRC_BLD_DLL_OPTS += --export-all --output-def=HSstdcbits.def DllVersionInfo.o
 SRC_BLD_DLL_OPTS += -lwinmm -lwsock32 -lHSrts_imp -lgmp -L. -L../../../rts/gmp -L../../../rts
+SRC_CC_OPTS += -optc-DCOMPILING_STDLIB
 
 #
 # Compile the files using the Haskell compiler (ghc really).
-- 
GitLab