From owner-freebsd-questions@FreeBSD.ORG Wed Apr 23 01:16:43 2003 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 D7A4737B401 for ; Wed, 23 Apr 2003 01:16:43 -0700 (PDT) Received: from imo-d01.mx.aol.com (imo-d01.mx.aol.com [205.188.157.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0126D43F75 for ; Wed, 23 Apr 2003 01:16:43 -0700 (PDT) (envelope-from edinho64@netscape.net) Received: from edinho64@netscape.net by imo-d01.mx.aol.com (mail_out_v34.22.) id i.1b4.59d676c (16226); Wed, 23 Apr 2003 04:16:26 -0400 (EDT) Received: from netscape.net (pool-141-150-115-173.nwrk.east.verizon.net [141.150.115.173]) by air-in02.mx.aol.com (v93.8) with ESMTP id MAILININ22-3f623ea64bda13f; Wed, 23 Apr 2003 04:16:26 -0400 Message-ID: <3EA64BD8.3000505@netscape.net> Date: Wed, 23 Apr 2003 04:16:24 -0400 From: "E. J. Cerejo" User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Hostmaster@Video2Video.Com, freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Mailer: Unknown (No Version) Subject: Re: ld-elf.so.1 and libintl.so.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2003 08:16:44 -0000 > When trying to run "gnomemeeting," "galeon" or "galeon-bin," and a whole > host of other X programs, I get the following error: > /usr/libexec/ld-elf.so.1: Shared object "libintl.so.2" not found > * Has anyone else seen this? > * Is there a pkg_add to quell this error? > * What is ld-elf.so.1 (I often see it)?! Yes I had that problem before, it used to happen every time I upgraded gettext but since I've been using portupgrade and portinstall for all my ports it hasn't happened since then. The way I used to solve the problem I would create symlink to whatever version of libintl.so. present in my /usr/local/lib/, run this command: ls /usr/local/lib/libintl.so.* to see which one you have, right now I have libintl.so.4 on mine, if you have this one just symlink it: ln -s /local/lib/libintl.so.4 /usr/local/lib/libintl.so.2 This should solve your problem.