Re: [patch] Correct configure test for sin_len to compile on Tru64 Unix

2004-03-15 Thread Shinichi Maruyama
wayned So, it looks like we need 2 configure tests and separate defines for wayned sa_len and sin_len. wayned How about the appended patch? This applies to the very latest CVS wayned source and would require the running of autoconf and autoheader wayned after applying it. I use rsync

Re: [patch] Correct configure test for sin_len to compile on Tru64 Unix

2004-03-15 Thread Wayne Davison
On Tue, Mar 16, 2004 at 10:01:19AM +0900, Shinichi Maruyama wrote: This OS has sin_len in struct sockaddr_in. But after configure, HAVE_SOCKADDR_SIN_LEN remains undef in config.h. Needs patch like this ? Yup -- much appreciated! I've checked in your fix, plus an extra cleanup of

[patch] Correct configure test for sin_len to compile on Tru64 Unix

2004-02-25 Thread Petter Reinholdtsen
The last versions of rsync fail to compile on Tru64 Unix (alpha), because of a typo in configure.in. The problem is that the code in configure check for sockaddr.sa_len, while the code uses sockaddr.sin_len. This patch fixes the problem. Please include it in the next version of rsync. diff