From: Stephen D. <sd...@us...> - 2005-10-16 08:38:37
|
Update of /cvsroot/naviserver/naviserver In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21427 Modified Files: ChangeLog Makefile configure.in Removed Files: acinclude.m4 Log Message: * Makefile: * acinclude.m4: * m4/dns.m4: Drop acinclude.m4 and move dns checking macros into own file in m4 directory. * configure.in: * nsd/dns.c: Use built-in AC_CHECK_MEMBERS macro. --- acinclude.m4 DELETED --- Index: ChangeLog =================================================================== RCS file: /cvsroot/naviserver/naviserver/ChangeLog,v retrieving revision 1.213 retrieving revision 1.214 diff -C2 -d -r1.213 -r1.214 *** ChangeLog 15 Oct 2005 16:02:15 -0000 1.213 --- ChangeLog 16 Oct 2005 08:38:29 -0000 1.214 *************** *** 1,2 **** --- 1,11 ---- + 2005-10-15 Stephen Deasey <sd...@us...> + + * Makefile: + * acinclude.m4: + * m4/dns.m4: Drop acinclude.m4 and move dns checking macros into + own file in m4 directory. + * configure.in: + * nsd/dns.c: Use built-in AC_CHECK_MEMBERS macro. + 2005-10-15 Zoran Vasiljevic <vas...@us...> Index: Makefile =================================================================== RCS file: /cvsroot/naviserver/naviserver/Makefile,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Makefile 9 Oct 2005 23:43:57 -0000 1.14 --- Makefile 16 Oct 2005 08:38:29 -0000 1.15 *************** *** 36,40 **** dirs = nsthread nsd nssock nscgi nscp nslog nsperm nsdb ! distfiles = $(dirs) doc tcl include tests win32 *.tcl *.m4 configure \ Makefile install-sh missing README ChangeLog NEWS license.terms naviserver.rdf --- 36,40 ---- dirs = nsthread nsd nssock nscgi nscp nslog nsperm nsdb ! distfiles = $(dirs) doc tcl include tests win32 *.tcl configure m4 \ Makefile install-sh missing README ChangeLog NEWS license.terms naviserver.rdf Index: configure.in =================================================================== RCS file: /cvsroot/naviserver/naviserver/configure.in,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** configure.in 15 Oct 2005 15:06:59 -0000 1.13 --- configure.in 16 Oct 2005 08:38:29 -0000 1.14 *************** *** 237,240 **** --- 237,241 ---- fi + # # Darwin version of getnameinfo will not work correctly *************** *** 245,260 **** # ! AC_MSG_CHECKING([sin_len in struct sockaddr_in]) ! AC_TRY_COMPILE([ ! #include <netinet/in.h> ! ], [ ! struct sockaddr_in sa; ! sa.sin_len; ! ], [ ! AC_DEFINE(HAVE_SOCKADDRIN_SIN_LEN, 1, [Should we use the sin_len field of struct sockaddr_in?]) ! AC_MSG_RESULT(yes) ! ], [ ! AC_MSG_RESULT(no) ! ]) # --- 246,253 ---- # ! AC_CHECK_MEMBERS([struct sockaddr_in.sin_len],,,[ ! #include <sys/types.h> ! #include <netinet/in.h>]) ! # |