From owner-freebsd-questions@FreeBSD.ORG Sat Sep 17 12:56:46 2005 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 1779416A425 for ; Sat, 17 Sep 2005 12:56:46 +0000 (GMT) (envelope-from m@MHoerich.de) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 496F843D46 for ; Sat, 17 Sep 2005 12:56:40 +0000 (GMT) (envelope-from m@MHoerich.de) Received: (qmail invoked by alias); 17 Sep 2005 12:56:38 -0000 Received: from p548B5642.dip.t-dialin.net (EHLO localhost) [84.139.86.66] by mail.gmx.net (mp005) with SMTP; 17 Sep 2005 14:56:38 +0200 X-Authenticated: #5114400 Date: Sat, 17 Sep 2005 14:56:38 +0200 From: Mario Hoerich To: Jordan Freeman Message-ID: <20050917125637.GA82790@Pandora.MHoerich.de> References: <432BBB87.6010107@thecompanyonline.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <432BBB87.6010107@thecompanyonline.com> User-Agent: Mutt/1.4.2.1i X-Y-GMX-Trusted: 0 Cc: freebsd-questions@freebsd.org Subject: Re: Error Code 1 building Sendmail. FreeBSD 5.4-p6 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: Sat, 17 Sep 2005 12:56:46 -0000 # Jordan Freeman: > Here's the output. Any assistance would be apprecaited. > > make > Warning: Object directory not changed from original > /usr/src/usr.sbin/sendmail > cc -O2 -pipe -march=pentium3 [...] > -D_FFR_SMTP_SSL -I/usr/local/lib -o sendmail [...] ^^^^^^^^^^^^^^^^ > /usr/bin/ld: cannot find -lsasl2 > *** Error code 1 Looks like a typo. Changing that "-I/usr/local/lib" to "-L/usr/local/lib", so it's added to the library search path instead of the include search path, should do the trick. HTH Mario