aboutsummaryrefslogtreecommitdiff
path: root/gdb/gnulib/config.in
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2012-06-24 09:12:33 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2012-06-24 09:12:33 +0000
commit40a733915f18afe9a482a07084b4d3fdf85e44f5 (patch)
tree1d05e1f3a1d8eb1c6649ed462257c3bad8808e5c /gdb/gnulib/config.in
parent972daa01e2ee0a5c41e1dd45a71ad398c9266af8 (diff)
downloadgdb-40a733915f18afe9a482a07084b4d3fdf85e44f5.zip
gdb-40a733915f18afe9a482a07084b4d3fdf85e44f5.tar.gz
gdb-40a733915f18afe9a482a07084b4d3fdf85e44f5.tar.bz2
gdb/
Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e. * gnulib/config.in: Regenerate. * gnulib/configure: Likewise. * gnulib/import/m4/extensions.m4: Update it. * gnulib/import/m4/gnulib-common.m4: Likewise. * gnulib/import/m4/memmem.m4: Likewise. * gnulib/import/m4/mmap-anon.m4: Likewise. * gnulib/import/m4/multiarch.m4: Likewise. * gnulib/import/stdint.in.h: Likewise.
Diffstat (limited to 'gdb/gnulib/config.in')
-rw-r--r--gdb/gnulib/config.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/gnulib/config.in b/gdb/gnulib/config.in
index 560b55c..327539e 100644
--- a/gdb/gnulib/config.in
+++ b/gdb/gnulib/config.in
@@ -218,7 +218,8 @@
#undef _MINIX
/* The _Noreturn keyword of C11. */
-#ifndef _Noreturn
+#if ! (defined _Noreturn \
+ || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))
# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
|| 0x5110 <= __SUNPRO_C)
# define _Noreturn __attribute__ ((__noreturn__))
@@ -244,7 +245,7 @@
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
-/* Enable general extensions on MacOS X. */
+/* Enable general extensions on Mac OS X. */
#ifndef _DARWIN_C_SOURCE
# undef _DARWIN_C_SOURCE
#endif
@@ -269,7 +270,7 @@
/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
- __APPLE__ && __MACH__ test for MacOS X.
+ __APPLE__ && __MACH__ test for Mac OS X.
__APPLE_CC__ tests for the Apple compiler and its version.
__STDC_VERSION__ tests for the C99 mode. */
#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__