* lib/autoconf/types.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT):
Use -1ull rather than -1u, since that causes problems with gnulib; see
<http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
+2007-10-22 Paul Eggert <eggert@cs.ucla.edu>
+
+ Don't check for bug in HP-UX 11.00 cpp.
+ * lib/autoconf/types.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT):
+ Use -1ull rather than -1u, since that causes problems with gnulib; see
+ <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
+
2007-10-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* tests/autotest.at (Backquote command substitution)
[ac_cv_type_unsigned_long_long_int],
[AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
- [[#if ! (18446744073709551615ULL <= -1u)
+ [[#if ! (18446744073709551615ULL <= -1ull)
error in preprocessor;
#endif
unsigned long long int ull = 18446744073709551615ULL;