From owner-freebsd-current@FreeBSD.ORG Fri Feb 5 02:13:26 2010 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85EBC106566B for ; Fri, 5 Feb 2010 02:13:26 +0000 (UTC) (envelope-from mike@jellydonut.org) Received: from mail-fx0-f226.google.com (mail-fx0-f226.google.com [209.85.220.226]) by mx1.freebsd.org (Postfix) with ESMTP id 25E938FC14 for ; Fri, 5 Feb 2010 02:13:25 +0000 (UTC) Received: by fxm26 with SMTP id 26so3327061fxm.33 for ; Thu, 04 Feb 2010 18:13:25 -0800 (PST) MIME-Version: 1.0 Received: by 10.103.80.32 with SMTP id h32mr1293272mul.59.1265334117918; Thu, 04 Feb 2010 17:41:57 -0800 (PST) In-Reply-To: References: Date: Thu, 4 Feb 2010 20:41:57 -0500 Message-ID: <1de79841002041741q6b57b6e5s4f78542f8a1b892@mail.gmail.com> From: Michael Proto To: Rob Farmer Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: current@freebsd.org Subject: Re: "libutil.so.8" not found, required by "sendmail" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2010 02:13:26 -0000 On Thu, Feb 4, 2010 at 8:03 PM, Rob Farmer wrote= : > Hi, > > I'm running current (r203336) with mail/ssmtp from ports installed > instead of sendmail. Whenever I try to send email, I get an error that > libutil.so.8 is not available. > > # periodic daily > /libexec/ld-elf.so.1: Shared object "libutil.so.8" not found, required > by "sendmail" > > # ldd /usr/sbin/sendmail > /usr/sbin/sendmail: > =A0 =A0 =A0 =A0libutil.so.8 =3D> not found (0x0) > =A0 =A0 =A0 =A0libc.so.7 =3D> /lib/libc.so.7 (0x800646000) > > I'm not sure if this is a problem with mailwrapper in the base system > or the ssmtp port - any pointers? > > Thanks, > -- > Rob Farmer > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org= " > Would appear to be a problem with your base system, as both mailwrapper and /usr/libexec/sendmail/sendmail both use libutil.so.8: minibsd8-dev:root/ # ldd /usr/sbin/mailwrapper /usr/sbin/mailwrapper: libutil.so.8 =3D> /lib/libutil.so.8 (0x28083000) libc.so.7 =3D> /lib/libc.so.7 (0x28090000) Try reinstalling libutil from /usr/src/lib/libutil perhaps? -Proto