Bruno Haible <bruno <at> clisp.org> writes: > --- gnulib-20060823-modified/m4/inttypes.m4 2006-07-27 03:12:58.000000000 +0200 ... > + #ifdef INT32_MAX > + PRId32 PRIi32 > + #endif > + #ifdef UINT32_MAX > + PRIo32 PRIu32 PRIx32 PRIX32 > + #ifdef INT64_MAX > + PRId64 PRIi64 > + #endif
Oops - missing an #endif /*UINT32_MAX*/ there. I checked in the obvious fix. 2006-08-28 Eric Blake <[EMAIL PROTECTED]> * inttypes.m4 (gl_INTTYPES_H): Fix missing #endif. $ cvs diff m4/inttypes.m4 Index: m4/inttypes.m4 =================================================================== RCS file: /sources/gnulib/gnulib/m4/inttypes.m4,v retrieving revision 1.11 diff -u -r1.11 inttypes.m4 --- m4/inttypes.m4 28 Aug 2006 16:57:51 -0000 1.11 +++ m4/inttypes.m4 28 Aug 2006 20:42:05 -0000 @@ -60,6 +60,7 @@ #endif #ifdef UINT32_MAX PRIo32 PRIu32 PRIx32 PRIX32 +#endif #ifdef INT64_MAX PRId64 PRIi64 #endif