[dovecot-cvs] dovecot/src/lib compat.h,1.29,1.30

cras at dovecot.org cras at dovecot.org
Thu Oct 20 12:16:04 EEST 2005


Update of /var/lib/cvs/dovecot/src/lib
In directory talvi:/tmp/cvs-serv19921/src/lib

Modified Files:
	compat.h 
Log Message:
Include inttypes.h with Tru64 to get uint32_t etc. types defined.



Index: compat.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/compat.h,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- compat.h	27 Sep 2005 19:49:59 -0000	1.29
+++ compat.h	20 Oct 2005 09:15:57 -0000	1.30
@@ -1,6 +1,10 @@
 #ifndef __COMPAT_H
 #define __COMPAT_H
 
+#if defined (HAVE_INTTYPES_H) && defined(TRU64)
+#  include <inttypes.h>
+#endif
+
 /* well, this is obviously wrong since it assumes it's 64bit, but older
    GCCs don't define it and we really want it. */
 #ifndef LLONG_MAX



More information about the dovecot-cvs mailing list