From d21ef7f6b0e2f42559062a4bd8d8ca662ed4809e Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 14 Apr 2000 14:15:07 +0000 Subject: [PATCH] [project @ 2000-04-14 14:15:07 by simonmar] back off from _POSIX_C_SOURCE=199506L to 199309L, because the former causes a bunch of extra functions thread-related to be compiled into each module on Solaris. --- ghc/includes/Stg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/includes/Stg.h b/ghc/includes/Stg.h index f4939ba..7451b3c 100644 --- a/ghc/includes/Stg.h +++ b/ghc/includes/Stg.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Stg.h,v 1.27 2000/04/14 13:47:12 simonmar Exp $ + * $Id: Stg.h,v 1.28 2000/04/14 14:15:07 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -14,7 +14,7 @@ #ifndef NON_POSIX_SOURCE #define _POSIX_SOURCE 1 -#define _POSIX_C_SOURCE 199506L +#define _POSIX_C_SOURCE 199309L #define _ISOC9X_SOURCE #endif -- 1.7.10.4