]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/include/features.h
update
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / include / features.h
1 /* Copyright (C) 1991-1993,1995-2006,2007,2009 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 #ifndef _FEATURES_H
20 #define _FEATURES_H     1
21
22 #ifndef _GNU_SOURCE
23 # define _GNU_SOURCE 1
24 #endif
25
26 /* These are defined by the user (or the compiler)
27    to specify the desired environment:
28
29    __STRICT_ANSI__      ISO Standard C.
30    _ISOC99_SOURCE       Extensions to ISO C89 from ISO C99.
31    _POSIX_SOURCE        IEEE Std 1003.1.
32    _POSIX_C_SOURCE      If ==1, like _POSIX_SOURCE; if >=2 add IEEE Std 1003.2;
33                         if >=199309L, add IEEE Std 1003.1b-1993;
34                         if >=199506L, add IEEE Std 1003.1c-1995;
35                         if >=200112L, all of IEEE 1003.1-2004
36                         if >=200809L, all of IEEE 1003.1-2008
37    _XOPEN_SOURCE        Includes POSIX and XPG things.  Set to 500 if
38                         Single Unix conformance is wanted, to 600 for the
39                         sixth revision, to 700 for the seventh revision.
40    _XOPEN_SOURCE_EXTENDED XPG things and X/Open Unix extensions.
41    _LARGEFILE_SOURCE    Some more functions for correct standard I/O.
42    _LARGEFILE64_SOURCE  Additional functionality from LFS for large files.
43    _FILE_OFFSET_BITS=N  Select default filesystem interface.
44    _BSD_SOURCE          ISO C, POSIX, and 4.3BSD things.
45    _SVID_SOURCE         ISO C, POSIX, and SVID things.
46    _ATFILE_SOURCE       Additional *at interfaces.
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    _FORTIFY_SOURCE      If set to numeric value > 0 additional security
51                         measures are defined, according to level.
52
53    The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
54    If none of these are defined, the default is to have _SVID_SOURCE,
55    _BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
56    200112L.  If more than one of these are defined, they accumulate.
57    For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
58    together give you ISO C, 1003.1, and 1003.2, but nothing else.
59
60    These are defined by this file and are used by the
61    header files to decide what to declare or define:
62
63    __USE_ISOC99         Define ISO C99 things.
64    __USE_ISOC95         Define ISO C90 AMD1 (C95) things.
65    __USE_POSIX          Define IEEE Std 1003.1 things.
66    __USE_POSIX2         Define IEEE Std 1003.2 things.
67    __USE_POSIX199309    Define IEEE Std 1003.1, and .1b things.
68    __USE_POSIX199506    Define IEEE Std 1003.1, .1b, .1c and .1i things.
69    __USE_XOPEN          Define XPG things.
70    __USE_XOPEN_EXTENDED Define X/Open Unix things.
71    __USE_UNIX98         Define Single Unix V2 things.
72    __USE_XOPEN2K        Define XPG6 things.
73    __USE_XOPEN2K8       Define XPG7 things.
74    __USE_LARGEFILE      Define correct standard I/O things.
75    __USE_LARGEFILE64    Define LFS things with separate names.
76    __USE_FILE_OFFSET64  Define 64bit interface as default.
77    __USE_BSD            Define 4.3BSD things.
78    __USE_SVID           Define SVID things.
79    __USE_MISC           Define things common to BSD and System V Unix.
80    __USE_ATFILE         Define *at interfaces and AT_* constants for them.
81    __USE_GNU            Define GNU extensions.
82    __USE_REENTRANT      Define reentrant/thread-safe *_r functions.
83    __USE_FORTIFY_LEVEL  Additional security measures used, according to level.
84    __FAVOR_BSD          Favor 4.3BSD things in cases of conflict.
85
86    The macros `__GNU_LIBRARY__', `__GLIBC__', and `__GLIBC_MINOR__' are
87    defined by this file unconditionally.  `__GNU_LIBRARY__' is provided
88    only for compatibility.  All new code should use the other symbols
89    to test for features.
90
91    All macros listed above as possibly being defined by this file are
92    explicitly undefined if they are not explicitly defined.
93    Feature-test macros that are not defined by the user or compiler
94    but are implied by the other feature-test macros defined (or by the
95    lack of any definitions) are defined by the file.  */
96
97
98 /* Undefine everything, so we get a clean slate.  */
99 #undef  __USE_ISOC99
100 #undef  __USE_ISOC95
101 #undef  __USE_POSIX
102 #undef  __USE_POSIX2
103 #undef  __USE_POSIX199309
104 #undef  __USE_POSIX199506
105 #undef  __USE_XOPEN
106 #undef  __USE_XOPEN_EXTENDED
107 #undef  __USE_UNIX98
108 #undef  __USE_XOPEN2K
109 #undef  __USE_XOPEN2K8
110 #undef  __USE_LARGEFILE
111 #undef  __USE_LARGEFILE64
112 #undef  __USE_FILE_OFFSET64
113 #undef  __USE_BSD
114 #undef  __USE_SVID
115 #undef  __USE_MISC
116 #undef  __USE_ATFILE
117 #undef  __USE_GNU
118 #undef  __USE_REENTRANT
119 #undef  __USE_FORTIFY_LEVEL
120 #undef  __FAVOR_BSD
121 #undef  __KERNEL_STRICT_NAMES
122
123 /* Suppress kernel-name space pollution unless user expressedly asks
124    for it.  */
125 #ifndef _LOOSE_KERNEL_NAMES
126 # define __KERNEL_STRICT_NAMES
127 #endif
128
129 /* Always use ISO C things.  */
130 #define __USE_ANSI      1
131
132 /* Convenience macros to test the versions of glibc and gcc.
133    Use them like this:
134    #if __GNUC_PREREQ (2,8)
135    ... code requiring gcc 2.8 or later ...
136    #endif
137    Note - they won't work for gcc1 or glibc1, since the _MINOR macros
138    were not defined then.  */
139 #if defined __GNUC__ && defined __GNUC_MINOR__
140 # define __GNUC_PREREQ(maj, min) \
141         ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
142 #else
143 # define __GNUC_PREREQ(maj, min) 0
144 #endif
145
146
147 /* If _BSD_SOURCE was defined by the user, favor BSD over POSIX.  */
148 #if defined _BSD_SOURCE && \
149     !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \
150       defined _XOPEN_SOURCE || defined _XOPEN_SOURCE_EXTENDED || \
151       defined _GNU_SOURCE || defined _SVID_SOURCE)
152 # define __FAVOR_BSD    1
153 #endif
154
155 /* If _GNU_SOURCE was defined by the user, turn on all the other features.  */
156 #ifdef _GNU_SOURCE
157 # undef  _ISOC99_SOURCE
158 # define _ISOC99_SOURCE 1
159 # undef  _POSIX_SOURCE
160 # define _POSIX_SOURCE  1
161 # undef  _POSIX_C_SOURCE
162 # define _POSIX_C_SOURCE        200809L
163 # undef  _XOPEN_SOURCE
164 # define _XOPEN_SOURCE  700
165 # undef  _XOPEN_SOURCE_EXTENDED
166 # define _XOPEN_SOURCE_EXTENDED 1
167 # undef  _LARGEFILE64_SOURCE
168 # define _LARGEFILE64_SOURCE    1
169 # undef  _BSD_SOURCE
170 # define _BSD_SOURCE    1
171 # undef  _SVID_SOURCE
172 # define _SVID_SOURCE   1
173 # undef  _ATFILE_SOURCE
174 # define _ATFILE_SOURCE 1
175 #endif
176
177 /* This macro indicates that the installed library is uClibc.  Use
178  * __UCLIBC_MAJOR__ and __UCLIBC_MINOR__ to test for the features in
179  * specific releases.  */
180 #define __UCLIBC__              1
181
182 #ifdef __UCLIBC__
183 /* Load up the current set of uClibc supported features along
184  * with the current uClibc major and minor version numbers.
185  * For uClibc release 0.9.26, these numbers would be:
186  *      #define __UCLIBC_MAJOR__        0
187  *      #define __UCLIBC_MINOR__        9
188  *      #define __UCLIBC_SUBLEVEL__     26
189  */
190 # define __need_uClibc_config_h
191 # include <bits/uClibc_config.h>
192 # undef __need_uClibc_config_h
193
194 /* For uClibc, always optimize for size -- this should disable
195  * a lot of expensive inlining...
196  * TODO: this is wrong! __OPTIMIZE_SIZE__ is an indicator of
197  * gcc -Os compile. We should not mess with compiler inlines.
198  * We should instead disable __USE_EXTERN_INLINES unconditionally,
199  * or maybe actually audit and test uclibc to work correctly
200  * with __USE_EXTERN_INLINES on.
201  */
202 # define __OPTIMIZE_SIZE__   1
203
204 /* disable unsupported features */
205 # undef _FORTIFY_SOURCE
206 # undef __LDBL_COMPAT
207
208 # ifndef __UCLIBC_HAS_THREADS__
209 #  if defined _REENTRANT || defined _THREAD_SAFE
210 #   warning requested reentrant code, but thread support was disabled
211 #   undef _REENTRANT
212 #   undef _THREAD_SAFE
213 #  endif
214 # endif
215
216 # ifndef __UCLIBC_HAS_LFS__
217 #  undef _LARGEFILE64_SOURCE
218 /* NOTE: This is probably incorrect on a 64-bit arch... */
219 #  if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
220 #   error It appears you have defined _FILE_OFFSET_BITS=64.  Unfortunately, \
221 uClibc was built without large file support enabled.
222 #  endif
223 # elif defined __BCC__
224 #  error BCC does not support LFS, please disable it
225 # endif
226 #endif /* __UCLIBC__ */
227
228 /* If nothing (other than _GNU_SOURCE) is defined,
229    define _BSD_SOURCE and _SVID_SOURCE.  */
230 #if (!defined __STRICT_ANSI__ && !defined _ISOC99_SOURCE && \
231      !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
232      !defined _XOPEN_SOURCE && !defined _XOPEN_SOURCE_EXTENDED && \
233      !defined _BSD_SOURCE && !defined _SVID_SOURCE)
234 # define _BSD_SOURCE    1
235 # define _SVID_SOURCE   1
236 #endif
237
238 /* This is to enable the ISO C99 extension.  Also recognize the old macro
239    which was used prior to the standard acceptance.  This macro will
240    eventually go away and the features enabled by default once the ISO C99
241    standard is widely adopted.  */
242 #if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \
243      || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
244 # define __USE_ISOC99   1
245 #endif
246
247 /* This is to enable the ISO C90 Amendment 1:1995 extension.  */
248 #if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \
249      || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199409L))
250 # define __USE_ISOC95   1
251 #endif
252
253 /* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
254    (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined).  */
255 #if ((!defined __STRICT_ANSI__ || (_XOPEN_SOURCE - 0) >= 500) && \
256      !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE)
257 # define _POSIX_SOURCE  1
258 # if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
259 #  define _POSIX_C_SOURCE       2
260 # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 600
261 #  define _POSIX_C_SOURCE       199506L
262 # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 700
263 #  define _POSIX_C_SOURCE       200112L
264 # else
265 #  define _POSIX_C_SOURCE       200809L
266 # endif
267 # define __USE_POSIX_IMPLICITLY 1
268 #endif
269
270 #if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
271 # define __USE_POSIX    1
272 #endif
273
274 #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
275 # define __USE_POSIX2   1
276 #endif
277
278 #if (_POSIX_C_SOURCE - 0) >= 199309L
279 # define __USE_POSIX199309      1
280 #endif
281
282 #if (_POSIX_C_SOURCE - 0) >= 199506L
283 # define __USE_POSIX199506      1
284 #endif
285
286 #if (_POSIX_C_SOURCE - 0) >= 200112L
287 # define __USE_XOPEN2K          1
288 # undef __USE_ISOC99
289 # define __USE_ISOC99           1
290 #endif
291
292 #if (_POSIX_C_SOURCE - 0) >= 200809L
293 # define __USE_XOPEN2K8         1
294 # undef  _ATFILE_SOURCE
295 # define _ATFILE_SOURCE 1
296 #endif
297
298 #ifdef  _XOPEN_SOURCE
299 # define __USE_XOPEN    1
300 # if (_XOPEN_SOURCE - 0) >= 500
301 #  define __USE_XOPEN_EXTENDED  1
302 #  define __USE_UNIX98  1
303 #  undef _LARGEFILE_SOURCE
304 #  define _LARGEFILE_SOURCE     1
305 #  if (_XOPEN_SOURCE - 0) >= 600
306 #   if (_XOPEN_SOURCE - 0) >= 700
307 #    define __USE_XOPEN2K8      1
308 #   endif
309 #   define __USE_XOPEN2K        1
310 #   undef __USE_ISOC99
311 #   define __USE_ISOC99         1
312 #  endif
313 # else
314 #  ifdef _XOPEN_SOURCE_EXTENDED
315 #   define __USE_XOPEN_EXTENDED 1
316 #  endif
317 # endif
318 #endif
319
320 #ifdef _LARGEFILE_SOURCE
321 # define __USE_LARGEFILE        1
322 #endif
323
324 #ifdef _LARGEFILE64_SOURCE
325 # define __USE_LARGEFILE64      1
326 #endif
327
328 #if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
329 # define __USE_FILE_OFFSET64    1
330 #endif
331
332 #if defined _BSD_SOURCE || defined _SVID_SOURCE
333 # define __USE_MISC     1
334 #endif
335
336 #ifdef  _BSD_SOURCE
337 # define __USE_BSD      1
338 #endif
339
340 #ifdef  _SVID_SOURCE
341 # define __USE_SVID     1
342 #endif
343
344 #ifdef  _ATFILE_SOURCE
345 # define __USE_ATFILE   1
346 #endif
347
348 #ifdef  _GNU_SOURCE
349 # define __USE_GNU      1
350 #endif
351
352 #if defined _REENTRANT || defined _THREAD_SAFE
353 # define __USE_REENTRANT        1
354 #endif
355
356 #if defined _FORTIFY_SOURCE && _FORTIFY_SOURCE > 0 \
357     && __GNUC_PREREQ (4, 1) && defined __OPTIMIZE__ && __OPTIMIZE__ > 0
358 # if _FORTIFY_SOURCE > 1
359 #  define __USE_FORTIFY_LEVEL 2
360 # else
361 #  define __USE_FORTIFY_LEVEL 1
362 # endif
363 #else
364 # define __USE_FORTIFY_LEVEL 0
365 #endif
366
367 /* We do support the IEC 559 math functionality, real and complex.  */
368 #ifdef __UCLIBC_HAS_FLOATS__
369 #define __STDC_IEC_559__                1
370 #define __STDC_IEC_559_COMPLEX__        1
371 #endif
372
373 #ifdef __UCLIBC_HAS_WCHAR__
374 /* wchar_t uses ISO 10646-1 (2nd ed., published 2000-09-15) / Unicode 3.1.  */
375 #define __STDC_ISO_10646__              200009L
376 #endif
377
378 /*  There is an unwholesomely huge amount of code out there that depends on the
379  *  presence of GNU libc header files.  We have GNU libc header files.  So here
380  *  we commit a horrible sin.  At this point, we _lie_ and claim to be GNU libc
381  *  to make things like /usr/include/linux/socket.h and lots of apps work as
382  *  their developers intended.  This is IMHO, pardonable, since these defines
383  *  are not really intended to check for the presence of a particular library,
384  *  but rather are used to define an _interface_.  */
385 #if !defined __FORCE_NOGLIBC && (!defined _LIBC || defined __FORCE_GLIBC)
386 /* This macro indicates that the installed library is the GNU C Library.
387    For historic reasons the value now is 6 and this will stay from now
388    on.  The use of this variable is deprecated.  */
389 /* uClibc WARNING: leave these aligned to the left, don't put a space after '#', else
390  * broken apps could fail the check. */
391 #undef  __GNU_LIBRARY__
392 #define __GNU_LIBRARY__ 6
393
394 /* Major and minor version number of the GNU C library package.  Use
395    these macros to test for features in specific releases.  */
396 /* Don't do it, if you want to keep uClibc happy.  */
397 #define __GLIBC__       2
398 #define __GLIBC_MINOR__ 2
399 #endif
400
401 #define __GLIBC_PREREQ(maj, min) \
402         ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
403
404 #ifndef __UCLIBC__
405 /* Decide whether a compiler supports the long long datatypes.  */
406 #if defined __GNUC__ \
407     || (defined __PGI && defined __i386__ ) \
408     || (defined __INTEL_COMPILER && (defined __i386__ || defined __ia64__)) \
409     || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
410 # define __GLIBC_HAVE_LONG_LONG 1
411 #endif
412 #endif
413
414 /* This is here only because every header file already includes this one.  */
415 #ifndef __ASSEMBLER__
416 # ifndef _SYS_CDEFS_H
417 #  include <sys/cdefs.h>
418 # endif
419
420 /* If we don't have __REDIRECT, prototypes will be missing if
421    __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
422 # if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
423 #  define __USE_LARGEFILE       1
424 #  ifdef __UCLIBC_HAS_LFS__
425 #  define __USE_LARGEFILE64     1
426 #  endif
427 # endif
428
429 #endif  /* !ASSEMBLER */
430
431 /* Decide whether we can, and are willing to define extern inline
432  * functions in headers, even if this results in a slightly bigger
433  * code for user programs built against uclibc.
434  * Enabled only in -O2 compiles, not -Os.
435  * uclibc itself is usually built without __USE_EXTERN_INLINES,
436  * remove "&& !defined __OPTIMIZE_SIZE__" part to do otherwise.
437  */
438 #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
439     && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__ \
440     && (defined __extern_inline || defined __GNUC_GNU_INLINE__)
441 # define __USE_EXTERN_INLINES   1
442 #endif
443
444 #ifdef _LIBC
445 # ifdef __UCLIBC_HAS_LFS__
446 #  undef _FILE_OFFSET_BITS
447 #  undef __USE_FILE_OFFSET64
448 # endif
449 # include <libc-internal.h>
450 #endif
451
452 #endif  /* features.h  */