From: simonmar Date: Fri, 14 Apr 2000 14:15:07 +0000 (+0000) Subject: [project @ 2000-04-14 14:15:07 by simonmar] X-Git-Tag: Approximately_9120_patches~4695 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d21ef7f6b0e2f42559062a4bd8d8ca662ed4809e;hp=e2bbb8b475aad005ee9136f3f4d7af5bb2182597;p=ghc-hetmet.git [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. --- 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