From 5f160cde271e86c7eec9ec4f2620e376d86eda52 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 27 May 1996 02:18:37 +0000 Subject: [PATCH] * features.h [_GNU_SOURCE] (_BSD_SOURCE, _SVID_SOURCE, _POSIX_SOURCE, _POSIX_C_SOURCE): Define these. --- ChangeLog | 4 ++-- features.h | 22 ++++++++-------------- 2 files changed, 10 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3c90aff..8d914b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ Sun May 26 15:15:08 1996 Roland McGrath - * features.h [_GNU_SOURCE || _BSD_SOURCE || _SVID_SOURCE || - _POSIX_SOURCE || _POSIX_C_SOURCE]: #undef __STRICT_ANSI__. + * features.h [_GNU_SOURCE] (_BSD_SOURCE, _SVID_SOURCE, + _POSIX_SOURCE, _POSIX_C_SOURCE): Define these. * time/Makefile (tzcompile): Add missing backslash. diff --git a/features.h b/features.h index ccf3a37..015e230 100644 --- a/features.h +++ b/features.h @@ -79,22 +79,16 @@ Cambridge, MA 02139, USA. */ #define __FAVOR_BSD 1 #endif -/* Explicit features turn off -ansi. */ -#if (defined (_GNU_SOURCE) || \ - defined (_BSD_SOURCE) || defined (_SVID_SOURCE) || \ - defined (_POSIX_SOURCE) || defined (_POSIX_C_SOURCE)) -#undef __STRICT_ANSI__ -#endif - /* If _GNU_SOURCE was defined by the user, turn on all the other features. */ #ifdef _GNU_SOURCE -/* If the user specifies some of the following without _GNU_SOURCE, - they are mutually exclusive. But they all default below to on, - so undefine them to get all the features turned on for _GNU_SOURCE. */ -#undef _POSIX_SOURCE -#undef _POSIX_C_SOURCE -#undef _BSD_SOURCE -#undef _SVID_SOURCE +#undef _POSIX_SOURCE +#define _POSIX_SOURCE 1 +#undef _POSIX_C_SOURCE +#define _POSIX_C_SOURCE 2 +#undef _BSD_SOURCE +#define _BSD_SOURCE 1 +#undef _SVID_SOURCE +#define _SVID_SOURCE 1 #endif /* If nothing (other than _GNU_SOURCE) is defined, -- 2.7.4