[dovecot-cvs] dovecot/src/lib compat.h,1.32,1.33

cras at dovecot.org cras at dovecot.org
Sun Jan 22 17:53:51 EET 2006


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

Modified Files:
	compat.h 
Log Message:
If uoff_t type already exists, use it (UnixWare has it).



Index: compat.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/compat.h,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- compat.h	13 Jan 2006 20:26:01 -0000	1.32
+++ compat.h	22 Jan 2006 15:53:48 -0000	1.33
@@ -19,7 +19,9 @@
 #endif
 #endif
 
-#if defined (UOFF_T_INT)
+#if defined (HAVE_UOFF_T)
+/* native support */
+#elif defined (UOFF_T_INT)
 typedef unsigned int uoff_t;
 #elif defined (UOFF_T_LONG)
 typedef unsigned long uoff_t;



More information about the dovecot-cvs mailing list