--------------------- PatchSet 4289 Date: 2007/04/20 05:35:37 Author: dwsquid Branch: squid3-largeobj Tag: (none) Log: PRId64 is not automatically defined on Linux. According to inttypes.h we must define __STDC_FORMAT_MACROS first. Members: src/squid.h:1.32->1.32.6.1 Index: squid3/src/squid.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/squid.h,v retrieving revision 1.32 retrieving revision 1.32.6.1 diff -u -r1.32 -r1.32.6.1 --- squid3/src/squid.h 12 Apr 2007 23:51:07 -0000 1.32 +++ squid3/src/squid.h 20 Apr 2007 05:35:37 -0000 1.32.6.1 @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.32 2007/04/12 23:51:07 squidadm Exp $ + * $Id: squid.h,v 1.32.6.1 2007/04/20 05:35:37 dwsquid Exp $ * * AUTHOR: Duane Wessels * @@ -35,6 +35,11 @@ #ifndef SQUID_H #define SQUID_H +/* + * On linux this must be defined to get PRId64 and friends + */ +#define __STDC_FORMAT_MACROS + #include "config.h" #ifdef _SQUID_MSWIN_