https://bugzilla.samba.org/show_bug.cgi?id=2357
[EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From [EMAIL PROTECTED] 2005-02-17 18:04 ------- The CVS version has this code in rsync.h to try to deal with this: #if !defined makedev && defined mkdev #define makedev mkdev #endif So, under Windows Services for Unix, is mkdev not a define? I suppose we could change the #if to something like this: #if !defined makedev && (defined mkdev || defined WIN32) Does that work? Any better ideas? -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html