aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2013-04-27 12:30:33 -0700
committerPaul Eggert2013-04-27 12:30:33 -0700
commitd7ed9b364adba7fc3c627ccd02f0ab453a23c661 (patch)
tree37798d79c8c216c30aa891a91c039b17e7c30743
parentb7260dd49c5a492411f0ae9318aa6f2f4735109c (diff)
downloademacs-d7ed9b364adba7fc3c627ccd02f0ab453a23c661.tar.gz
emacs-d7ed9b364adba7fc3c627ccd02f0ab453a23c661.zip
Merge from gnulib.
-rw-r--r--ChangeLog5
-rw-r--r--lib/intprops.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cf1d4f0d54e..a6dfed3dc56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12013-04-27 Paul Eggert <eggert@cs.ucla.edu>
2
3 Merge from gnulib, incorporating:
4 2013-04-27 alignof, intprops, malloca: port better to IBM's C compiler
5
12013-04-26 Paul Eggert <eggert@cs.ucla.edu> 62013-04-26 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 Port better to AIX (Bug#14258). 8 Port better to AIX (Bug#14258).
diff --git a/lib/intprops.h b/lib/intprops.h
index b473052d114..f57f9b4ddab 100644
--- a/lib/intprops.h
+++ b/lib/intprops.h
@@ -89,7 +89,7 @@
89 89
90/* Return 1 if the __typeof__ keyword works. This could be done by 90/* Return 1 if the __typeof__ keyword works. This could be done by
91 'configure', but for now it's easier to do it by hand. */ 91 'configure', but for now it's easier to do it by hand. */
92#if 2 <= __GNUC__ || 0x5110 <= __SUNPRO_C 92#if 2 <= __GNUC__ || defined __IBM__TYPEOF__ || 0x5110 <= __SUNPRO_C
93# define _GL_HAVE___TYPEOF__ 1 93# define _GL_HAVE___TYPEOF__ 1
94#else 94#else
95# define _GL_HAVE___TYPEOF__ 0 95# define _GL_HAVE___TYPEOF__ 0