From owner-freebsd-questions@FreeBSD.ORG Fri Oct 20 03:39:22 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 8FE9716A416 for ; Fri, 20 Oct 2006 03:39:22 +0000 (UTC) (envelope-from mikes@signull.com) Received: from mercury.mv.net (mercury.mv.net [199.125.85.40]) by mx1.FreeBSD.org (Postfix) with SMTP id 0C8E243D4C for ; Fri, 20 Oct 2006 03:39:21 +0000 (GMT) (envelope-from mikes@signull.com) Received: (qmail 2434 invoked from network); 19 Oct 2006 23:39:21 -0400 Received: from [207.22.49.143] (dslv-3-143.mv.com [207.22.49.143]) by mercury.mv.net ([199.125.85.40]) with ESMTP (MVMTR 0.13.0); Thu, 19 October 2006 23:39:21 -0400 (EDT) X-Peer-Info: remote-ip 207.22.49.143 local-ip 199.125.85.40 local-name mercury.mv.net Message-ID: <453844E3.4090303@signull.com> Date: Thu, 19 Oct 2006 23:39:15 -0400 From: Mike Spenard User-Agent: Thunderbird 1.5.0.7 (X11/20060922) MIME-Version: 1.0 To: Jonathan Horne References: <45392E74.9000003@signull.com> <200610191837.57826.freebsd@dfwlp.com> In-Reply-To: <200610191837.57826.freebsd@dfwlp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org 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: Fri, 20 Oct 2006 03:39:22 -0000 Hi John, Thanks for the hints. Libsm goes fine, then I go to build libsmutil and I get... # make make: don't know how to make /usr/local/include/sasl/prop.h. Stop prop.h seems to be part of cyrus-sasl2 and i'm following the docs and installing cyrus-sasl1. My make.conf also specifies /usr/local/include/sasl1/ not /sasl/. Libsm seemed to pick that path up correctly. Thanks, Mike Ive also tried it without the '+' 's as the handbook shows Jonathan Horne wrote: > 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 > _______________________________________________ > 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" >