Re: build error on my system (Mac OS 10.4.5)

2006-03-29 Thread Jay Cotton
On Mar 29, 2006, at 4:28 PM, Kevin Ryde wrote: Michael Tuexen <[EMAIL PROTECTED]> writes: The configure script tests for socklen_t in the wrong way. It must do something like I posted some weeks ago. Oops, that must have gone through to the keeper. The configure change below might do the rig

Re: build error on my system (Mac OS 10.4.5)

2006-03-29 Thread Kevin Ryde
Michael Tuexen <[EMAIL PROTECTED]> writes: > > The configure script tests for socklen_t in > the wrong way. It must do something like I posted some weeks ago. Oops, that must have gone through to the keeper. The configure change below might do the right thing. --- configure.in.~1.268.2.4.~ 2006

Re: build error on my system (Mac OS 10.4.5)

2006-03-29 Thread Jay Cotton
On Mar 28, 2006, at 7:34 PM, Kevin Ryde wrote: Jay Cotton <[EMAIL PROTECTED]> writes: In file included from /usr/include/netinet/in.h:78, from /usr/include/netdb.h:86, from posix.c:122: /usr/include/sys/socket.h:99: error: two or more data types in declaratio

Re: build error on my system (Mac OS 10.4.5)

2006-03-29 Thread Michael Tuexen
Hi Jay, line 99 of socket.h reads typedef __darwin_socklen_t socklen_t; and this is the problem. The configure script tests for socklen_t in the wrong way. It must do something like I posted some weeks ago. A pretty common mistake... It was decided that the fix is not that important and w

Re: build error on my system (Mac OS 10.4.5)

2006-03-28 Thread Michael Tuexen
I guess it is the socklen_t error, I reported earlier... Best regards Michael On Mar 29, 2006, at 2:34 AM, Kevin Ryde wrote: Jay Cotton <[EMAIL PROTECTED]> writes: In file included from /usr/include/netinet/in.h:78, from /usr/include/netdb.h:86, from posix.c

Re: build error on my system (Mac OS 10.4.5)

2006-03-28 Thread Kevin Ryde
Jay Cotton <[EMAIL PROTECTED]> writes: > > In file included from /usr/include/netinet/in.h:78, > from /usr/include/netdb.h:86, > from posix.c:122: > /usr/include/sys/socket.h:99: error: two or more data types in > declaration specifiers What does that offending sy