X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=gcc%2Facconfig.h;h=17324b576119f53ce4006512f297bbb000c8e29d;hp=fcc71620a0a4a19a1fac049fe2608f1737b72a3a;hb=680776c828e07c0d2ccba0f4665e2d302996e1c6;hpb=5887d455164f8e1eeb15069bc107b3511e494ce7 diff --git a/gcc/acconfig.h b/gcc/acconfig.h index fcc71620a0a..17324b57611 100644 --- a/gcc/acconfig.h +++ b/gcc/acconfig.h @@ -1,17 +1,44 @@ +/* Define to 1 if NLS is requested. */ +#undef ENABLE_NLS -/* Include the old config.h as config2.h to simplify the transition - to autoconf. */ -#include "config2.h" +/* Define as 1 if you have catgets and don't want to use GNU gettext. */ +#undef HAVE_CATGETS -/* Whether malloc must be declared even if is included. */ -#undef NEED_DECLARATION_MALLOC +/* Define as 1 if you have gettext and don't want to use GNU gettext. */ +#undef HAVE_GETTEXT -/* Whether realloc must be declared even if is included. */ -#undef NEED_DECLARATION_REALLOC +/* Define if your locale.h file contains LC_MESSAGES. */ +#undef HAVE_LC_MESSAGES -/* Whether calloc must be declared even if is included. */ -#undef NEED_DECLARATION_CALLOC +/* Define as 1 if you have the stpcpy function. */ +#undef HAVE_STPCPY -/* Whether free must be declared even if is included. */ -#undef NEED_DECLARATION_FREE -@TOP@ +/* Define if your assembler supports specifying the maximum number + of bytes to skip when using the GAS .p2align command. */ +#undef HAVE_GAS_MAX_SKIP_P2ALIGN + +/* Define if your assembler supports .balign and .p2align. */ +#undef HAVE_GAS_BALIGN_AND_P2ALIGN + +/* Define if your assembler uses the old HImode fild and fist notation. */ +#undef HAVE_GAS_FILDS_FISTS + +/* Define to `int' if doesn't define. */ +#undef ssize_t + +/* Define if cpp should also search $prefix/include. */ +#undef PREFIX_INCLUDE_DIR + +@BOTTOM@ + +/* Bison unconditionally undefines `const' if neither `__STDC__' nor + __cplusplus are defined. That's a problem since we use `const' in + the GCC headers, and the resulting bison code is therefore type + unsafe. Thus, we must match the bison behavior here. */ + +#ifndef __STDC__ +#ifndef __cplusplus +#undef const +#define const +#endif +#endif