From owner-freebsd-questions@FreeBSD.ORG Fri Mar 2 17:41:20 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 152B616A40A for ; Fri, 2 Mar 2007 17:41:20 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.189]) by mx1.freebsd.org (Postfix) with ESMTP id 9E18313C491 for ; Fri, 2 Mar 2007 17:41:19 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by mu-out-0910.google.com with SMTP id g7so845278muf for ; Fri, 02 Mar 2007 09:41:18 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ssadC8IEkLxGr2YoTo9BnXRhuWhV0+eBirHQ3mNV7EgZDtSjJtZTUb0LZLU8IbGDQD6Ehw3MEVLeQSyxCYvbgfnhIht0hognCS/wBdHoC6Ph8sAuWqJXPgo71yYutxtmAiHi2jDSE21mxbjQpAs9fyiQpuTcaio4GooBfPdkBuA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Ft8bmJ4hr1SrqbQfZ9duSBVaW+NrjJKa4j9TyEBh9h4XHbmxLMbdeQGJerbhgZHiINmHvL9J4kASuPct55YBpbkr60qfHQRBsC0grHArajlLKSWt1273Sq2jh6t0271NlNnEo1t6TmBf61OrGhSKSD4Hl/VjUTQijEO2AnM6gM8= Received: by 10.82.163.13 with SMTP id l13mr1102106bue.1172857278202; Fri, 02 Mar 2007 09:41:18 -0800 (PST) Received: by 10.82.175.1 with HTTP; Fri, 2 Mar 2007 09:41:18 -0800 (PST) Message-ID: Date: Fri, 2 Mar 2007 11:41:18 -0600 From: "illoai@gmail.com" To: "Jeff Mohler" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Cc: FreeBSD Questions Subject: Re: X11 library question.. 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: Fri, 02 Mar 2007 17:41:20 -0000 On 01/03/07, Jeff Mohler wrote: > The error: > > error while loading shared libraries: libXm.so.3: cannot open shared object > file: No such file or directory > > > Ive done a few searches, and installing open-motif seemed to be the right > answer, but isnt getting me anywhere. Indeed, % find /usr/X11R6/ -type f -iname "*libxm*" . . . /usr/X11R6/lib/libXm.so.3 . . . % grep -r libXm /var/db/pkg/ . . . /var/db/pkg/open-motif-2.2.3_2/+CONTENTS:lib/libXm.a /var/db/pkg/open-motif-2.2.3_2/+CONTENTS:lib/libXm.so /var/db/pkg/open-motif-2.2.3_2/+CONTENTS:lib/libXm.so.3 . . . % ldconfig -r | grep libXm . . . 127:-lXm.3 => /usr/X11R6/lib/libXm.so.3 . . . You may need to run ldconfig -R (or ldconfig -m /usr/X11R6/lib if /usr/X11R6/lib somehow did not get in the hints file). Alternatively, you may have an older version of open-motif, which means you need to upgrade it. -- --