From owner-freebsd-questions@FreeBSD.ORG Wed Dec 15 16:43:30 2004 Return-Path: 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 0A81016A4CE for ; Wed, 15 Dec 2004 16:43:30 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EB9343D31 for ; Wed, 15 Dec 2004 16:43:29 +0000 (GMT) (envelope-from infofarmer@mail.ru) Received: from [83.237.13.19] (port=1324 helo=[172.17.0.69]) by mx2.mail.ru with esmtp id 1CecFM-000OCs-00; Wed, 15 Dec 2004 19:43:28 +0300 Message-ID: <41C069AF.8010809@mail.ru> Date: Wed, 15 Dec 2004 19:43:27 +0300 From: "Andrew P." User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway , questions@freebsd.org References: <41BF2C32.3080808@mail.ru> <20041214195310.GA86984@xor.obsecurity.org> In-Reply-To: <20041214195310.GA86984@xor.obsecurity.org> Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit X-Spam: Not detected Subject: Re: ld-elf.so.1: Shared object"libintl.so.6" not found X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: infofarmer@mail.ru List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Dec 2004 16:43:30 -0000 Kris Kennaway wrote: > On Tue, Dec 14, 2004 at 09:08:50PM +0300, Andrew P. wrote: > > >>>The real question you should be asking is "why does ppp (a system >>>binary) depend on libintl (not a system library)?" You've probably >>>replaced your ppp(8) with something else, with poor consequences. >> >>Can you tell me how to figure that out? > > > What does the following command show you? > > ldd /usr/sbin/ppp > [originally built in May] root@satsmb# ldd /usr/sbin/ppp /usr/sbin/ppp: libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x280b6000) libmd.so.2 => /usr/lib/libmd.so.2 (0x280cf000) libutil.so.3 => /usr/lib/libutil.so.3 (0x280d8000) libz.so.2 => /usr/lib/libz.so.2 (0x280e1000) libalias.so.4 => /usr/lib/libalias.so.4 (0x280ee000) libcrypto.so.3 => /usr/lib/libcrypto.so.3 (0x280fe000) libradius.so.1 => /usr/lib/libradius.so.1 (0x281f5000) libnetgraph.so.1 => /usr/lib/libnetgraph.so.1 (0x281fa000) libc.so.4 => /usr/lib/libc.so.4 (0x281fe000) [rebuilt on Dec 10] root@satbsd# ldd /usr/sbin/ppp /usr/sbin/ppp: libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x280b7000) libmd.so.2 => /usr/lib/libmd.so.2 (0x280d0000) libutil.so.3 => /usr/lib/libutil.so.3 (0x280d9000) libz.so.2 => /usr/lib/libz.so.2 (0x280e2000) libalias.so.4 => /usr/lib/libalias.so.4 (0x280f0000) libcrypto.so.3 => /usr/lib/libcrypto.so.3 (0x28100000) libradius.so.1 => /usr/lib/libradius.so.1 (0x281fe000) libnetgraph.so.1 => /usr/lib/libnetgraph.so.1 (0x28203000) libc.so.4 => /usr/lib/libc.so.4 (0x28207000) I removed libintl from /usr/lib to check if the problem is still there and it is: root@satsmb# dmesg -a <...> Starting ppp as "root" /usr/libexec/ld-elf.so.1: Shared object "libintl.so.6" not found <...> Best wishes, Andrew P.