On Tue, Jun 29, 2004 at 02:10:48PM -0000, [EMAIL PROTECTED] wrote: > --- configure.in 14 Jun 2004 21:16:40 -0000 1.589 > +++ configure.in 29 Jun 2004 14:10:48 -0000 1.590 > @@ -522,6 +522,8 @@ > AC_SEARCH_LIBS(gethostbyname, nsl) > AC_SEARCH_LIBS(gethostname, nsl) > AC_SEARCH_LIBS(socket, socket) > +dnl Search for -lbind / -lresolv only after having added -lsocket and -lnsl > +AC_SEARCH_LIBS(res_init, bind resolv)
This is not right, res_init() is not used anywhere inside APR so configure will pick up -lresolv unnecessarily on many platforms. What are you trying to solve here? joe
