From owner-freebsd-questions@FreeBSD.ORG Sat Aug 30 11:53:21 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 3400516A4BF for ; Sat, 30 Aug 2003 11:53:21 -0700 (PDT) Received: from roc-66-67-55-11.rochester.rr.com (roc-66-67-55-11.rochester.rr.com [66.67.55.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE46843F75 for ; Sat, 30 Aug 2003 11:53:19 -0700 (PDT) (envelope-from vega@roc-66-67-55-11.rochester.rr.com) Received: by roc-66-67-55-11.rochester.rr.com (Postfix, from userid 1000) id 1DBAE901F41; Sat, 30 Aug 2003 14:55:14 -0400 (EDT) Date: Sat, 30 Aug 2003 14:55:14 -0400 From: mpd To: Joe Marcus Clarke Message-ID: <20030830185514.GA52680@rochester.rr.com> References: <20030830173355.GA52273@rochester.rr.com> <1062265071.20003.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1062265071.20003.2.camel@shumai.marcuscom.com> User-Agent: Mutt/1.5.4i cc: questions@freebsd.org Subject: Re: gnucash fails to execute now 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: Sat, 30 Aug 2003 18:53:21 -0000 On Sat, Aug 30, 2003 at 01:37:52PM -0400, Joe Marcus Clarke wrote: > On Sat, 2003-08-30 at 13:33, mpd wrote: > > Hi, > > > > Gnucash used to work, now it fails on startup w/: > > > > ERROR: In procedure dynamic-link: > > ERROR: file: "libgw-gnc", message: "can't close the module" > > > > I don't know what I did to set this off, but it happens now > > with both ver. 1.8.4 and 1.8.5. I even re-updated all my ports, > > just in case. Still no go. > > > > Any ideas? > > Yeah, one of your binaries is still linked against a non existent > library (most likely gnugetopt). To find out which one, do ldd > /usr/X11R6/lib/libgw-gnc.so. Then you have to find out which library > imports that dependency, and rebuild it. Yeah, that found it. For some reason it was looking for libintl.so.1. I took the quick-hack way out and symlinked to libintl.so.5, which solved the problem. > > Joe Thanks, Mike