From owner-freebsd-questions@FreeBSD.ORG Thu Oct 19 23:38:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C71716A407 for ; Thu, 19 Oct 2006 23:38:02 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EE2943D49 for ; Thu, 19 Oct 2006 23:38:02 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k9JNbw02007810 for ; Thu, 19 Oct 2006 18:37:58 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Thu, 19 Oct 2006 18:37:57 -0500 User-Agent: KMail/1.9.4 References: <45392E74.9000003@signull.com> In-Reply-To: <45392E74.9000003@signull.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610191837.57826.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=3.6 tests=ALL_TRUSTED autolearn=ham version=3.1.6 X-Spam-Checker-Version: SpamAssassin 3.1.6 (2006-10-03) on zeus.dfwlp.com Subject: Re: cyrus-sasl & sendmail compile error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Oct 2006 23:38:02 -0000 On Friday 20 October 2006 15:15, Mike Spenard wrote: > Following this doc on sendmail-auth... > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/smtp-auth.html > > I go to recompile sendmail after > > # cd /usr/src/usr.sbin/sendmail > # make cleandir > # make obj > # make > # make install > > and I get... > cc: /usr/obj/usr/src/usr.sbin/sendmail/../../lib/libsmutil/libsmutil.a: > No such file or directory > cc: /usr/obj/usr/src/usr.sbin/sendmail/../../lib/libsm/libsm.a: No such > file or directory > *** Error code 1 > > Stop in /usr/src/usr.sbin/sendmail. > /etc/make.conf is as the document specifies.. > SENDMAIL_CFLAGS=-I/usr/local/include/sasl1 -DSASL > SENDMAIL_LDFLAGS=-L/usr/local/lib > SENDMAIL_LDADD=-lsasl > -- > > Mike Spenard > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" if thats all you did, then you left out 2 important steps. here is the way i do it: # cd /usr/src/lib/libsm; make clean; make obj; make depend; make # cd /usr/src/lib/libsmutil; make clean; make obj; make depend; make # cd /usr/src/usr.sbin/sendmail; make clean; make obj; make depend; make; make install those first 2 lines should take care of the errors youre seeing. hth, jonathan