search for: needmember

Displaying 5 results from an estimated 5 matches for "needmember".

2003 May 17
1
Tru64 Unix patch for rsync 2.5.6.
Version 2.5.6 of rsync fail to compile on Tru64 Unix v5.1 with this error message: cc-wrapper -I. -I. -g -DHAVE_CONFIG_H -c socket.c -o socket.o cc: Error: socket.c, line 619: In this statement, "sin_len" is not a member of "sock2". (needmember) sock2.sin_len = sizeof(sock2); --------^ make: *** [socket.o] Error 1 error: compile failed. The problem seem to be that configure defines HAVE_SOCKADDR_LEN if struct sockaddr.sa_len exists, while the code uses member sin_len instead of sa_len. Trying to rename sin_len to sa_len...
2002 Mar 07
0
rsync 2.5.2 doens't compile on Tru64 5.1
....c -o syscall.o cc: Error: syscall.c, line 81: In this statement, "sun_len" is not a member of "saddr". (needmember) saddr.sun_len = len > sizeof(saddr.sun_path) ? sizeof(saddr.sun_path): len; ----------------^ make...
2002 Mar 14
0
rsync 2.5.2 doens't compile on Tru64 5.1 and FIFO, socket files
....c -o syscall.o cc: Error: syscall.c, line 81: In this statement, "sun_len" is not a member of "saddr". (needmember) saddr.sun_len = len > sizeof(saddr.sun_path) ? sizeof(saddr.sun_path): len; ----------------^ make...
2004 Feb 25
3
[patch] Correct configure test for sin_len to compile on Tru64 Unix
...VE_SOCKADDR_LEN) ], [], [ Without this fix, the compile fail with this error message: cc-wrapper -I. -I. -g -DHAVE_CONFIG_H -c socket.c -o socket.o cc: Error: socket.c, line 619: In this statement, "sin_len" is not a member of "sock2". (needmember) sock2.sin_len = sizeof(sock2); --------^ make: *** [socket.o] Error 1
2001 Jul 16
0
No subject
...ct sockaddr_storage s; s.__ss_family = 1; ; return 0; } configure:6454: checking for pw_class field in struct passwd configure:6469: cc -c -g -I/usr/local/ssl/include conftest.c 1>&5 cc: Error: configure, line 6465: In this statement, "pw_class" is not a member of "p". (needmember) struct passwd p; p.pw_class = 0; ------------------^ configure: failed program was: #line 6460 "configure" #include "confdefs.h" #include <pwd.h> int main() { struct passwd p; p.pw_class = 0; ; return 0; } configure:6493: checking if libc defines __progname config...