On Wed, Aug 30, 2006 at 02:11:42PM -0700, Todd Lyons said: > On Wed, Aug 30, 2006 at 10:22:06PM +0200, [EMAIL PROTECTED] wrote: > > >btw: ./configure && make is working here, too; the --enable-milter part > >is giving me difficulties... > > Yeah, I got the error too. I poked at it for a bit, but I didn't get > any further than you. A simple fix exists I'm sure, but I didn't > stumble on it. I was able to manually run the gcc command and add > "-lresolv" and it compiled properly. So something is wrong with > configure that it's not adding the -lresolv to the gcc commandline. > > It tries to run: > /bin/sh ../libtool --mode=link gcc -g -O2 -lnsl -o clamav-milter > cfgparser.o output.o getopt.o memory.o misc.o network.o clamav-milter.o > ../libclamav/libclamav.la -lmilter -lnsl -lpthread -lwrap > > It should be running: > /bin/sh ../libtool --mode=link gcc -g -O2 -lnsl -o clamav-milter > cfgparser.o output.o getopt.o memory.o misc.o network.o clamav-milter.o > ../libclamav/libclamav.la -lmilter -lnsl -lpthread -lwrap -lresolv > > Do this: > make # it will fail at the point you see > pushd clamav-milter; /bin/sh ../libtool --mode=link gcc -g -O2 -lnsl -o > clamav-milter cfgparser.o output.o getopt.o memory.o misc.o network.o > clamav-milter.o ../libclamav/libclamav.la -lmilter -lnsl -lpthread -lwrap > -lresolv; popd > make # it will get past the failure point and finish > > I stared at it for a bit, but couldn't figure out the part that would > make it magically compile properly.
Try this: --------------------------------------------------------------------------- diff -Nru clamav-devel-latest/configure.in clamav-devel-latest.new/configure.in --- clamav-devel-latest/configure.in 2006-08-26 02:30:04.000000000 +0100 +++ clamav-devel-latest.new/configure.in 2006-08-31 00:55:53.000000000 +0100 @@ -160,7 +160,7 @@ if test -z "$resolv_lib"; then AC_CHECK_LIB(resolv, dn_expand, resolv_lib="-lresolv",) fi - AC_CHECK_HEADER(resolv.h,[FRESHCLAM_LIBS="$FRESHCLAM_LIBS $resolv_lib"; AC_DEFINE(HAVE_RESOLV_H,1,have resolv.h)], AC_MSG_WARN([****** DNS support disabled])) + AC_CHECK_HEADER(resolv.h,[FRESHCLAM_LIBS="$FRESHCLAM_LIBS $resolv_lib"; CLAMAV_MILTER_LIBS="$CLAMAV_MILTER_LIBS $resolv_lib"; AC_DEFINE(HAVE_RESOLV_H,1,have resolv.h)], AC_MSG_WARN([****** DNS support disabled])) fi AC_ARG_ENABLE(clamuko, --------------------------------------------------------------------------- If it works for you as well, it might be good to prod someone into adding it in CVS. The problem is that if resolv.h is present and useable, clamav-milter #includes it directly, so -lresolv needs to also be on the milter's link line, not just the library's link line. Freshclam and the milter appear to be the only things using it directly, so that's probably the only fix needed with regard to resolv.h. You'll need to run ./configure with --enable-maintainer-mode or else it won't rebuild after the change. Take care, -- -------------------------------------------------------------------------- | Stephen Gran | When neither their poverty nor their | | [EMAIL PROTECTED] | honor is touched, the majority of men | | http://www.lobefin.net/~steve | live content. -- Niccolo Machiavelli | --------------------------------------------------------------------------
signature.asc
Description: Digital signature
_______________________________________________ http://lurker.clamav.net/list/clamav-users.html