From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: tomas@fabula.de Newsgroups: gmane.lisp.guile.devel Subject: Re: Guile 1.5.8 beta available for testing. Date: Thu, 29 Aug 2002 12:29:43 +0200 Sender: guile-devel-admin@gnu.org Message-ID: <20020829102943.GB18398@www> References: <87adn9plqf.fsf@raven.i.defaultvalue.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1030616154 32363 127.0.0.1 (29 Aug 2002 10:15:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 29 Aug 2002 10:15:54 +0000 (UTC) Cc: guile-devel@gnu.org Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17kML8-0008PG-00 for ; Thu, 29 Aug 2002 12:15:50 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17kMMU-0001yZ-00; Thu, 29 Aug 2002 06:17:14 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17kMLO-0001wD-00 for guile-devel@gnu.org; Thu, 29 Aug 2002 06:16:06 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17kMLM-0001vi-00 for guile-devel@gnu.org; Thu, 29 Aug 2002 06:16:05 -0400 Original-Received: from www.elogos.de ([212.18.192.92]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17kMLL-0001ve-00 for guile-devel@gnu.org; Thu, 29 Aug 2002 06:16:04 -0400 Original-Received: by www.elogos.de (Postfix, from userid 5002) id BA2AF104902; Thu, 29 Aug 2002 12:29:43 +0200 (CEST) Original-To: Rob Browning Content-Disposition: inline In-Reply-To: <87adn9plqf.fsf@raven.i.defaultvalue.org> User-Agent: Mutt/1.3.24i Errors-To: guile-devel-admin@gnu.org X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Developers list for Guile, the GNU extensibility library List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.lisp.guile.devel:1187 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:1187 On Mon, Aug 26, 2002 at 12:34:48PM -0500, Rob Browning wrote: > > We are pleased to annouce the availability of Guile 1.5.8 for testing. > Please report problems to guile-devel@gnu.org or bug-guile@gnu.org. > [...] > - Make sure LD_LIBRARY_PATH doesn't include anything > unnecessary -- though at the moment it (or > LTDL_LIBRARY_PATH) will need to include guile's lib > directory if that directory is not already in the normal > places libltdl looks. Test results on an oldish Debian Woody on Intel (so pretty vanilla): after the usual unpacking, ./configure, make, make install make check (which seems satisfied), and make install (all defaults, so installation goes to /usr/local/), calling guile: | spu@flunda:~/guile/guile-1.5.8$ guile | ERROR: In procedure dynamic-link: | ERROR: file: "libguilereadline-v-12", message: "file not found" (there were some old guile libs in /usr/lib. Removing them didn't change anything). An strace reveals where guile is looking for this lib. Here's the bit which looks relevant to me: | open("/lib/libguilereadline-v-12.la", O_RDONLY) = -1 ENOENT (No such file or directory) | open("/usr/lib/libguilereadline-v-12.la", O_RDONLY) = -1 ENOENT (No such file or directory) | open("libguilereadline-v-12.la", O_RDONLY) = -1 ENOENT (No such file or directory) Setting LD_LIBRARY_PATH seems to fix the problem for me: | spu@flunda:~$ LD_LIBRARY_PATH=/usr/local/lib guile | guile> (version) | "1.5.8" | guile> NOTE: Yes, I have /usr/local/lib in /etc/ld.so.conf. Careful as I am ;-) I ran /sbin/ldconfig, which didn't change anything (and the strace shows that guile finds its other libs unter /usr/local/lib anyway, it's just this libguilereadline-v-12) Thanks for the work, and I'm jumping excitedly up and down in expectation of guile 1.6 :-) Regards -- tomas _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel