From owner-freebsd-stable@FreeBSD.ORG Sat Jan 17 13:30:40 2004 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10B5516A4CE for ; Sat, 17 Jan 2004 13:30:40 -0800 (PST) Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 444A243D2D for ; Sat, 17 Jan 2004 13:30:37 -0800 (PST) (envelope-from freebsd-stable@m.gmane.org) Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1Ahy1b-00008V-00 for ; Sat, 17 Jan 2004 22:30:35 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-stable@freebsd.org Received: from sea.gmane.org ([80.91.224.252]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Ahy1Y-00008N-00 for ; Sat, 17 Jan 2004 22:30:32 +0100 Received: from news by sea.gmane.org with local (Exim 3.35 #1 (Debian)) id 1Ahy1Y-000627-00 for ; Sat, 17 Jan 2004 22:30:32 +0100 From: Manfred Lotz Date: Sat, 17 Jan 2004 22:13:12 +0100 Lines: 55 Message-ID: References: <20040117155823.GB71989@happy-idiot-talk.infracaninophile.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@sea.gmane.org User-Agent: Pan/0.14.2 (This is not a psychotic episode. It's a cleansing moment of clarity.) Sender: news Subject: Re: Shared object "libc.so.5" not found X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jan 2004 21:30:40 -0000 On Sat, 17 Jan 2004 15:58:23 +0000, Matthew Seaman wrote: > On Sat, Jan 17, 2004 at 03:17:32PM +0100, Manfred Lotz wrote: >> I've set up a new 4.9 STABLE system. Now when I want to install wget I >> get >> Shared object "libc.so.5" not found >> after a while. >> >> I did a: cd /usr/ports/ftp/wget;make install >> >> Any idea what's happening? > > Yes. Somehow you've managed to install a FreeBSD 5.x version of one of > the build tools used by the ftp/wget port, and that won't run under > FreeBSD 4.x. devel/gmake is a likely candidate -- can you run?: > > % gmake --version > > If that doesn't work, then you should: > > # pkg_delete -f gmake-\* > # cd /usr/ports/devel/gmake > # make install > > However, the problem doesn't have to be within gmake -- it could be any > of these ports: > > ...ports/ftp/wget:% make pretty-print-build-depends-list This port > requires package(s) "expat-1.95.6_1 gettext-0.12.1 gmake-3.80_1 > libiconv-1.9.1_3" to build. > > and you might have to delete and re-install those in a similar way. > > Alternatively, if you're a portupgrade user you can force a > rebuild/reinstall of *everything* that the wget port depends on in one > fell swoop by: > > # portupgrade -Rf ftp/wget > > which should sort things out. > > I tried it all although it didn't help. But your comments were very valuable because they did point me to the right direction. There was a makeinfo binary from FreeBSD 5.1 in my path which caused the problems. This was because I have a TeXLive installation which I took over from my FreeBSD 5.2 CURRENT system as well as I took over the ~/.zshrc which had a PATH statement including the "old" FreeBSD 5.2 bin directory of TeXLive. Thanks a lot, Manfred