diff options
author | rupp <rupp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-08 21:27:06 +0000 |
---|---|---|
committer | rupp <rupp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-08 21:27:06 +0000 |
commit | 41ed9d77c04a6ca6474fb04443a06944be9d295f (patch) | |
tree | d5d4917cb7b58635ee8e4b2879c48d70c23e89f8 /fixincludes/config.h.in | |
parent | 8f8948f111a76c96cffa66c7f1ab006626c68e0e (diff) | |
download | gcc-41ed9d77c04a6ca6474fb04443a06944be9d295f.tar.gz |
2011-06-08 Douglas B Rupp <rupp@gnat.com>
* fixincludes/configure.ac (AC_USE_SYSTEM_EXTENSIONS): Add.
* fixincludes/configure: Regenerate.
* fixincludes/config.h.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174818 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes/config.h.in')
-rw-r--r-- | fixincludes/config.h.in | 45 |
1 files changed, 43 insertions, 2 deletions
diff --git a/fixincludes/config.h.in b/fixincludes/config.h.in index 07cfb60e087..3f6cf1e574e 100644 --- a/fixincludes/config.h.in +++ b/fixincludes/config.h.in @@ -26,8 +26,8 @@ #endif -/* Define to 1 if you have the declaration of `basename', and to 0 if you - don't. */ +/* Define to 1 if you have the declaration of `basename(char *)', and to 0 if + you don't. */ #ifndef USED_FOR_TARGET #undef HAVE_DECL_BASENAME #endif @@ -393,6 +393,47 @@ #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 + + +/* Define to 1 if on MINIX. */ +#ifndef USED_FOR_TARGET +#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 + + /* Define to xatexit if the host system does not support atexit */ #ifndef USED_FOR_TARGET #undef atexit |