This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. -- [ Picked text/plain from multipart/alternative ] > From: Tony Hoyle [mailto:[EMAIL PROTECTED]] > Sent: 25 February 2002 17:06 > Anthony Williams wrote: > > > > I'm currently having a problem with detecting zlib > (configure thinks its > > there but it isn't) but everything up to "zlib.c" in src > compiles now. > > > Wierd... > It looks for the 'zlibVersion' function in libz (probably in /lib or > /usr/lib). It's possible you have the lib but not the headers. I've > just checked in a fix (it looks for zlib.h too).
configure reports "library with zlibVersion ..... no" or similar (i.e. no zlib) However, zlib.c _still_ fails to find zlib.h, as the cvsnt/zlib directory is not on the include path --- the WITH_ZLIB_TRUE lines from src/Makefile.in are expanded rather than the WITH_ZLIB_FALSE lines. The problem is the test "$ac_cv_have_zlib"="yes" --- you need a space around the = otherwise it always returns true. However, now we "don't know how to make ../zlib/libz.a" after building everything in src --- the solution is the put ZLIB_SUBDIR at the start of the SUBDIRS list. Also, fake-socket.h needs to include sys/socket.h (for sockaddr), and the getaddrinfo filenames use hyphens not underscores (e.g. fake-getaddrinfo.c, not fake_getaddrinfo.c), and it is fake-getnameinfo.c, not fake_nameinfo.c (protocols/Makefile.in) Finally, the Solaris 2.7 GSSAPI support seems to be the wrong version, or something. Configuring "--without-gssapi" seems to be OK, but then doesn't support gserver (surprise!) Anthony _______________________________________________ Cvsnt mailing list [EMAIL PROTECTED] http://www.cvsnt.org/cgi-bin/mailman/listinfo/cvsnt
