diff options
author | Ian Lance Taylor <iant@google.com> | 2012-09-18 16:36:48 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-09-18 16:36:48 +0000 |
commit | d4c059d5827f859cf240b50365f8057e41c5110b (patch) | |
tree | 1f71741e7cb75d47731f811dac43880fd0c5a6e7 /libbacktrace/config.h.in | |
parent | 19ece7ec02d7d09ed71e40dce212ff16d8faae29 (diff) | |
download | gcc-d4c059d5827f859cf240b50365f8057e41c5110b.tar.gz |
configure.ac: Add AC_USE_SYSTEM_EXTENSIONS.
* configure.ac: Add AC_USE_SYSTEM_EXTENSIONS.
* mmapio.c: Don't define _GNU_SOURCE.
* configure, config.h.in: Rebuild.
From-SVN: r191435
Diffstat (limited to 'libbacktrace/config.h.in')
-rw-r--r-- | libbacktrace/config.h.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libbacktrace/config.h.in b/libbacktrace/config.h.in index e6464c60597..6a31c53d028 100644 --- a/libbacktrace/config.h.in +++ b/libbacktrace/config.h.in @@ -70,3 +70,35 @@ /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS + +/* 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. */ +#undef _MINIX + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +#undef _POSIX_1_SOURCE + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +#undef _POSIX_SOURCE |