diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2008-03-27 09:46:19 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2008-03-27 09:46:19 +0000 |
commit | 60d2695833eb71a194c6dda412deaa676a98de30 (patch) | |
tree | 734204d9b6817a2ec9a938bd0eb3536db216b649 /gcc/config.in | |
parent | 639223bd89bc69c1e363cfc569e9903d2a76ed4f (diff) | |
download | gcc-60d2695833eb71a194c6dda412deaa676a98de30.zip gcc-60d2695833eb71a194c6dda412deaa676a98de30.tar.gz gcc-60d2695833eb71a194c6dda412deaa676a98de30.tar.bz2 |
extensions.m4: New.
config:
2008-03-27 Paolo Bonzini <bonzini@gnu.org>
* extensions.m4: New.
gcc:
2008-03-27 Paolo Bonzini <bonzini@gnu.org>
* configure.ac: Replace custom __GNU_SOURCE test with
AC_USE_SYSTEM_EXTENSIONS. Move it earlier.
* aclocal.m4: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
From-SVN: r133635
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 51 |
1 files changed, 43 insertions, 8 deletions
diff --git a/gcc/config.in b/gcc/config.in index 37fbe45..3c02951 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1369,37 +1369,37 @@ #endif -/* The size of `int', as computed by sizeof. */ +/* The size of a `int', as computed by sizeof. */ #ifndef USED_FOR_TARGET #undef SIZEOF_INT #endif -/* The size of `long', as computed by sizeof. */ +/* The size of a `long', as computed by sizeof. */ #ifndef USED_FOR_TARGET #undef SIZEOF_LONG #endif -/* The size of `long long', as computed by sizeof. */ +/* The size of a `long long', as computed by sizeof. */ #ifndef USED_FOR_TARGET #undef SIZEOF_LONG_LONG #endif -/* The size of `short', as computed by sizeof. */ +/* The size of a `short', as computed by sizeof. */ #ifndef USED_FOR_TARGET #undef SIZEOF_SHORT #endif -/* The size of `void *', as computed by sizeof. */ +/* The size of a `void *', as computed by sizeof. */ #ifndef USED_FOR_TARGET #undef SIZEOF_VOID_P #endif -/* The size of `__int64', as computed by sizeof. */ +/* The size of a `__int64', as computed by sizeof. */ #ifndef USED_FOR_TARGET #undef SIZEOF___INT64 #endif @@ -1464,9 +1464,44 @@ #endif -/* Always define this when using the GNU C Library */ +/* Define to 1 if on MINIX. */ #ifndef USED_FOR_TARGET -#undef _GNU_SOURCE +#undef _MINIX +#endif + + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +#ifndef USED_FOR_TARGET +#undef _POSIX_1_SOURCE +#endif + + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +#ifndef USED_FOR_TARGET +#undef _POSIX_SOURCE +#endif + + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# undef _ALL_SOURCE +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# undef _GNU_SOURCE +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# undef _POSIX_PTHREAD_SEMANTICS +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# undef _TANDEM_SOURCE +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# undef __EXTENSIONS__ #endif |