source: trunk/src/emx/include/features.h@ 1086

Last change on this file since 1086 was 1086, checked in by bird, 22 years ago

No GLIBC versions or indicators for us.

  • Property cvs2svn:cvs-rev set to 1.4
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 11.2 KB
Line 
1/* Copyright (C) 1991-1993,1995-2000,2001,2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
18
19/** @file
20 * GLIBC v2.3.2
21 * @changed bird: don't define *LARGEFILE64*, but make sure to indicate that
22 * off_t is 64bits.
23 * @changed bird: not GLIBC version numbers.
24 */
25
26#ifndef _FEATURES_H
27#define _FEATURES_H 1
28
29/* These are defined by the user (or the compiler)
30 to specify the desired environment:
31
32 __STRICT_ANSI__ ISO Standard C.
33 _ISOC99_SOURCE Extensions to ISO C89 from ISO C99.
34 _POSIX_SOURCE IEEE Std 1003.1.
35 _POSIX_C_SOURCE If ==1, like _POSIX_SOURCE; if >=2 add IEEE Std 1003.2;
36 if >=199309L, add IEEE Std 1003.1b-1993;
37 if >=199506L, add IEEE Std 1003.1c-1995
38 _XOPEN_SOURCE Includes POSIX and XPG things. Set to 500 if
39 Single Unix conformance is wanted, to 600 for the
40 upcoming sixth revision.
41 _XOPEN_SOURCE_EXTENDED XPG things and X/Open Unix extensions.
42 _LARGEFILE_SOURCE Some more functions for correct standard I/O.
43 _LARGEFILE64_SOURCE Additional functionality from LFS for large files.
44 _FILE_OFFSET_BITS=N Select default filesystem interface.
45 _BSD_SOURCE ISO C, POSIX, and 4.3BSD things.
46 _SVID_SOURCE ISO C, POSIX, and SVID things.
47 _GNU_SOURCE All of the above, plus GNU extensions.
48 _REENTRANT Select additionally reentrant object.
49 _THREAD_SAFE Same as _REENTRANT, often used by other systems.
50
51 The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
52 If none of these are defined, the default is to have _SVID_SOURCE,
53 _BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
54 199506L. If more than one of these are defined, they accumulate.
55 For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
56 together give you ISO C, 1003.1, and 1003.2, but nothing else.
57
58 These are defined by this file and are used by the
59 header files to decide what to declare or define:
60
61 __USE_ISOC99 Define ISO C99 things.
62 __USE_POSIX Define IEEE Std 1003.1 things.
63 __USE_POSIX2 Define IEEE Std 1003.2 things.
64 __USE_POSIX199309 Define IEEE Std 1003.1, and .1b things.
65 __USE_POSIX199506 Define IEEE Std 1003.1, .1b, .1c and .1i things.
66 __USE_XOPEN Define XPG things.
67 __USE_XOPEN_EXTENDED Define X/Open Unix things.
68 __USE_UNIX98 Define Single Unix V2 things.
69 __USE_XOPEN2K Define XPG6 things.
70 __USE_LARGEFILE Define correct standard I/O things.
71 __USE_LARGEFILE64 Define LFS things with separate names.
72 __USE_FILE_OFFSET64 Define 64bit interface as default.
73 __USE_BSD Define 4.3BSD things.
74 __USE_SVID Define SVID things.
75 __USE_MISC Define things common to BSD and System V Unix.
76 __USE_GNU Define GNU extensions.
77 __USE_REENTRANT Define reentrant/thread-safe *_r functions.
78 __FAVOR_BSD Favor 4.3BSD things in cases of conflict.
79
80 The macros `__GNU_LIBRARY__', `__GLIBC__', and `__GLIBC_MINOR__' are
81 defined by this file unconditionally. `__GNU_LIBRARY__' is provided
82 only for compatibility. All new code should use the other symbols
83 to test for features.
84
85 All macros listed above as possibly being defined by this file are
86 explicitly undefined if they are not explicitly defined.
87 Feature-test macros that are not defined by the user or compiler
88 but are implied by the other feature-test macros defined (or by the
89 lack of any definitions) are defined by the file. */
90
91
92/* Undefine everything, so we get a clean slate. */
93#undef __USE_ISOC99
94#undef __USE_POSIX
95#undef __USE_POSIX2
96#undef __USE_POSIX199309
97#undef __USE_POSIX199506
98#undef __USE_XOPEN
99#undef __USE_XOPEN_EXTENDED
100#undef __USE_UNIX98
101#undef __USE_XOPEN2K
102#undef __USE_LARGEFILE
103#undef __USE_LARGEFILE64
104#undef __USE_FILE_OFFSET64
105#undef __USE_BSD
106#undef __USE_SVID
107#undef __USE_MISC
108#undef __USE_GNU
109#undef __USE_REENTRANT
110#undef __FAVOR_BSD
111#undef __KERNEL_STRICT_NAMES
112
113/* Suppress kernel-name space pollution unless user expressedly asks
114 for it. */
115#ifndef _LOOSE_KERNEL_NAMES
116# define __KERNEL_STRICT_NAMES
117#endif
118
119/* Always use ISO C things. */
120#define __USE_ANSI 1
121
122
123/* If _BSD_SOURCE was defined by the user, favor BSD over POSIX. */
124#if defined _BSD_SOURCE && \
125 !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \
126 defined _XOPEN_SOURCE || defined _XOPEN_SOURCE_EXTENDED || \
127 defined _GNU_SOURCE || defined _SVID_SOURCE)
128# define __FAVOR_BSD 1
129#endif
130
131/* If _GNU_SOURCE was defined by the user, turn on all the other features. */
132#ifdef _GNU_SOURCE
133# undef _ISOC99_SOURCE
134# define _ISOC99_SOURCE 1
135# undef _POSIX_SOURCE
136# define _POSIX_SOURCE 1
137# undef _POSIX_C_SOURCE
138# define _POSIX_C_SOURCE 199506L
139# undef _XOPEN_SOURCE
140# define _XOPEN_SOURCE 600
141# undef _XOPEN_SOURCE_EXTENDED
142# define _XOPEN_SOURCE_EXTENDED 1
143# undef _LARGEFILE64_SOURCE
144#ifndef __EMX__ /* bird */
145# define _LARGEFILE64_SOURCE 1
146#endif /* bird */
147# undef _BSD_SOURCE
148# define _BSD_SOURCE 1
149# undef _SVID_SOURCE
150# define _SVID_SOURCE 1
151#endif
152
153/* If nothing (other than _GNU_SOURCE) is defined,
154 define _BSD_SOURCE and _SVID_SOURCE. */
155#if (!defined __STRICT_ANSI__ && !defined _ISOC99_SOURCE && \
156 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
157 !defined _XOPEN_SOURCE && !defined _XOPEN_SOURCE_EXTENDED && \
158 !defined _BSD_SOURCE && !defined _SVID_SOURCE)
159# define _BSD_SOURCE 1
160# define _SVID_SOURCE 1
161#endif
162
163/* This is to enable the ISO C99 extension. Also recognize the old macro
164 which was used prior to the standard acceptance. This macro will
165 eventually go away and the features enabled by default once the ISO C99
166 standard is widely adopted. */
167#if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \
168 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
169# define __USE_ISOC99 1
170#endif
171
172#ifndef __EMX__ /* bird: this messes up lot's of EMX legacy declarations. */
173/* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
174 (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined). */
175#if (!defined __STRICT_ANSI__ && !defined _POSIX_SOURCE && \
176 !defined _POSIX_C_SOURCE)
177# define _POSIX_SOURCE 1
178# if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
179# define _POSIX_C_SOURCE 2
180# else
181# define _POSIX_C_SOURCE 199506L
182# endif
183#endif
184#endif /* bird */
185
186#if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
187# define __USE_POSIX 1
188#endif
189
190#if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
191# define __USE_POSIX2 1
192#endif
193
194#if (_POSIX_C_SOURCE - 0) >= 199309L
195# define __USE_POSIX199309 1
196#endif
197
198#if (_POSIX_C_SOURCE - 0) >= 199506L
199# define __USE_POSIX199506 1
200#endif
201
202#ifdef _XOPEN_SOURCE
203# define __USE_XOPEN 1
204# if (_XOPEN_SOURCE - 0) >= 500
205# define __USE_XOPEN_EXTENDED 1
206# define __USE_UNIX98 1
207# undef _LARGEFILE_SOURCE
208# define _LARGEFILE_SOURCE 1
209# if (_XOPEN_SOURCE - 0) >= 600
210# define __USE_XOPEN2K 1
211# undef __USE_ISOC99
212# define __USE_ISOC99 1
213# endif
214# else
215# ifdef _XOPEN_SOURCE_EXTENDED
216# define __USE_XOPEN_EXTENDED 1
217# endif
218# endif
219#endif
220
221#ifdef _LARGEFILE_SOURCE
222# define __USE_LARGEFILE 1
223#endif
224
225#ifndef __EMX__ /* bird */
226#ifdef _LARGEFILE64_SOURCE
227# define __USE_LARGEFILE64 1
228#endif
229#endif /* bird */
230
231#ifndef __EMX__ /* bird */
232#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
233# define __USE_FILE_OFFSET64 1
234#endif
235#else
236# define __USE_FILE_OFFSET64 1
237#endif /* bird */
238
239#if defined _BSD_SOURCE || defined _SVID_SOURCE
240# define __USE_MISC 1
241#endif
242
243#ifdef _BSD_SOURCE
244# define __USE_BSD 1
245/* bird: __USE_BSD == __BSD_VISIBLE, make sure it's defined. */
246# ifdef __EMX__
247# undef __BSD_VISIBLE
248# define __BSD_VISIBLE 1
249# endif
250/* bird: end */
251#endif
252
253#ifdef _SVID_SOURCE
254# define __USE_SVID 1
255#endif
256
257#ifdef _GNU_SOURCE
258# define __USE_GNU 1
259#endif
260
261#if defined _REENTRANT || defined _THREAD_SAFE
262# define __USE_REENTRANT 1
263#endif
264
265/* We do support the IEC 559 math functionality, real and complex. */
266#define __STDC_IEC_559__ 1
267#define __STDC_IEC_559_COMPLEX__ 1
268
269/* wchar_t uses ISO 10646-1 (2nd ed., published 2000-09-15) / Unicode 3.1. */
270#define __STDC_ISO_10646__ 200009L
271
272#ifndef __EMX__ /*bird: we're not GLIBC */
273/* This macro indicates that the installed library is the GNU C Library.
274 For historic reasons the value now is 6 and this will stay from now
275 on. The use of this variable is deprecated. Use __GLIBC__ and
276 __GLIBC_MINOR__ now (see below) when you want to test for a specific
277 GNU C library version and use the values in <gnu/lib-names.h> to get
278 the sonames of the shared libraries. */
279#undef __GNU_LIBRARY__
280#define __GNU_LIBRARY__ 6
281
282/* Major and minor version number of the GNU C library package. Use
283 these macros to test for features in specific releases. */
284#define __GLIBC__ 2
285#define __GLIBC_MINOR__ 3
286#endif /*bird*/
287
288/* Convenience macros to test the versions of glibc and gcc.
289 Use them like this:
290 #if __GNUC_PREREQ (2,8)
291 ... code requiring gcc 2.8 or later ...
292 #endif
293 Note - they won't work for gcc1 or glibc1, since the _MINOR macros
294 were not defined then. */
295#if defined __GNUC__ && defined __GNUC_MINOR__
296# define __GNUC_PREREQ(maj, min) \
297 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
298#else
299# define __GNUC_PREREQ(maj, min) 0
300#endif
301
302#define __GLIBC_PREREQ(maj, min) \
303 ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
304
305/* Decide whether a compiler supports the long long datatypes. */
306#if defined __GNUC__ \
307 || (defined __PGI && defined __i386__ ) \
308 || (defined __INTEL_COMPILER && (defined __i386__ || defined __ia64__)) \
309 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
310# define __GLIBC_HAVE_LONG_LONG 1
311#endif
312
313/* This is here only because every header file already includes this one. */
314#ifndef __ASSEMBLER__
315# ifndef _SYS_CDEFS_H
316# include <sys/cdefs.h>
317# endif
318
319/* If we don't have __REDIRECT, prototypes will be missing if
320 __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
321# if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
322# define __USE_LARGEFILE 1
323#ifndef __EMX__ /* bird */
324# define __USE_LARGEFILE64 1
325#endif /* bird */
326# endif
327
328#endif /* !ASSEMBLER */
329
330/* Decide whether we can define 'extern inline' functions in headers. */
331#if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
332 && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__
333# define __USE_EXTERN_INLINES 1
334#endif
335
336
337#ifndef __EMX__ /* bird */
338/* This is here only because every header file already includes this one.
339 Get the definitions of all the appropriate `__stub_FUNCTION' symbols.
340 <gnu/stubs.h> contains `#define __stub_FUNCTION' when FUNCTION is a stub
341 that will always return failure (and set errno to ENOSYS). */
342#include <gnu/stubs.h>
343#endif /* bird */
344
345
346#endif /* features.h */
Note: See TracBrowser for help on using the repository browser.