Cygwin's gcc 3.3.1 doesn't support a 64-bit type and doesn't like this macro
(it causes missing semicolon errors wherever used).

Patch Summary:

    -1   +1    rsync.h
patchwork diff rsync.h
--- rsync.h     2004-02-23 10:44:40.000000000 -0500
+++ rsync.h     2004-02-23 10:44:45.000000000 -0500
@@ -314,7 +314,7 @@
 #define uint64 unsigned long long
 #else
 /* As long as it gets... */
-#define uint64 unsigned off_t
+#define uint64 unsigned long
 #endif
 
 /* Starting from protocol version 26, we always use 64-bit
-- 
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Reply via email to