diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ChangeLog | 5 | ||||
-rw-r--r-- | m4/stdbool.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index a188ea34b..d7bcb1d77 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,8 @@ +2006-01-26 Paul Eggert <eggert@cs.ucla.edu> + + * stdbool.m4 (AC_HEADER_STDBOOL): Sync from gnulib. + Use 'defined __GNUC__' rather than __GNUC__. + 2006-01-25 Paul Eggert <eggert@cs.ucla.edu> * stdbool.m4: Merge from gnulib; we still don't quite match diff --git a/m4/stdbool.m4 b/m4/stdbool.m4 index 9d423d9d1..43fbe2815 100644 --- a/m4/stdbool.m4 +++ b/m4/stdbool.m4 @@ -74,7 +74,7 @@ AC_DEFUN([AC_HEADER_STDBOOL], _Bool n[m]; char o[sizeof n == m * sizeof n[0] ? 1 : -1]; char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1]; - #if defined __xlc__ || __GNUC__ + #if defined __xlc__ || defined __GNUC__ /* Catch a bug in IBM AIX xlc compiler version 6.0.0.0 reported by James Lemley on 2005-10-05; see http://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html |