OSDN Git Service

2001-05-03 David O'Brien <obrien@FreeBSD.org>
[pf3gnuchains/gcc-fork.git] / gcc / acconfig.h
1 /* Define to 1 if NLS is requested.  */
2 #undef ENABLE_NLS
3
4 /* Define as 1 if you have catgets and don't want to use GNU gettext.  */
5 #undef HAVE_CATGETS
6
7 /* Define as 1 if you have gettext and don't want to use GNU gettext.  */
8 #undef HAVE_GETTEXT
9
10 /* Define if your locale.h file contains LC_MESSAGES.  */
11 #undef HAVE_LC_MESSAGES
12
13 /* Define as 1 if you have the stpcpy function.  */
14 #undef HAVE_STPCPY
15
16 /* Define if your assembler supports specifying the maximum number
17    of bytes to skip when using the GAS .p2align command. */
18 #undef HAVE_GAS_MAX_SKIP_P2ALIGN
19
20 /* Define if your assembler supports .balign and .p2align.  */
21 #undef HAVE_GAS_BALIGN_AND_P2ALIGN
22
23 /* Define if your assembler uses the old HImode fild and fist notation.  */
24 #undef HAVE_GAS_FILDS_FISTS
25
26 /* Define to `int' if <sys/types.h> doesn't define.  */
27 #undef ssize_t
28
29 @BOTTOM@
30
31 /* Bison unconditionally undefines `const' if neither `__STDC__' nor
32    __cplusplus are defined.  That's a problem since we use `const' in
33    the GCC headers, and the resulting bison code is therefore type
34    unsafe.  Thus, we must match the bison behavior here.  */
35
36 #ifndef __STDC__
37 #ifndef __cplusplus
38 #undef const
39 #define const
40 #endif
41 #endif