On 8/8/05, Randy Bush <[EMAIL PROTECTED]> wrote: > > Did you do a 'make buildworld -DNO_SENDMAIL'? If you did, then you > > need to do a 'make installworld -DNO_SENDMAIL'. > > NO_SENDMAIL is in /etc/make.conf > >
Hmm, then it shouldn't have even tried to install libmilter.a. Is the install system the same system as the build system? If they are not, then make sure the install system /etc/make.conf has NO_SENDMAIL defined. Check your src/lib/Makefile, it should have: .if !defined(NO_SENDMAIL) _libmilter= libmilter _libsm= libsm _libsmdb= libsmdb _libsmutil= libsmutil .endif which only builds, and installs the above libraries when NO_SENDMAIL is not defined. Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"
