diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/system.h | 2 |
2 files changed, 8 insertions, 2 deletions
@@ -1,6 +1,12 @@ -2005-09-28 Jim Meyering <jim@meyering.net> +2005-09-28 Paul Eggert <eggert@cs.ucla.edu> * Version 5.90-cvs. + + * src/system.h (LONGEST_MODIFIER): Use ULONG_MAX_LT_ULLONG_MAX + instead of ULLONG_MAX, as the latter doesn't work with GCC 2.7.2.1. + +2005-09-28 Jim Meyering <jim@meyering.net> + * configure.ac: Use 5.90-cvs as the version string, not 5.3.1-cvs. * NEWS: Adjust accordingly. diff --git a/src/system.h b/src/system.h index e2e67c49f..651a58d95 100644 --- a/src/system.h +++ b/src/system.h @@ -316,7 +316,7 @@ initialize_exit_failure (int status) # include <stdint.h> #endif -#if ULONG_MAX < ULLONG_MAX +#if ULONG_MAX_LT_ULLONG_MAX # define LONGEST_MODIFIER "ll" #else # define LONGEST_MODIFIER "l" |