From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Newsgroups: gmane.lisp.guile.user Subject: Re: libguilereadline load Date: Tue, 22 Jan 2013 23:09:51 +0100 Message-ID: <87r4lc3m4w.fsf@gnu.org> References: <2748570.HcEtJvY3KZ@main> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1358902225 1875 80.91.229.3 (23 Jan 2013 00:50:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 23 Jan 2013 00:50:25 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Wed Jan 23 01:50:44 2013 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TxoY4-0002fJ-71 for guile-user@m.gmane.org; Wed, 23 Jan 2013 01:50:40 +0100 Original-Received: from localhost ([::1]:58814 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxoXm-0008UP-RV for guile-user@m.gmane.org; Tue, 22 Jan 2013 19:50:22 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:50882) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Txm2m-0008JE-N2 for guile-user@gnu.org; Tue, 22 Jan 2013 17:10:14 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Txm2i-0007rp-Mk for guile-user@gnu.org; Tue, 22 Jan 2013 17:10:12 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:50435) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Txm2i-0007mn-HC for guile-user@gnu.org; Tue, 22 Jan 2013 17:10:08 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Txm2u-0006a3-Ow for guile-user@gnu.org; Tue, 22 Jan 2013 23:10:20 +0100 Original-Received: from reverse-83.fdn.fr ([80.67.176.83]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 22 Jan 2013 23:10:20 +0100 Original-Received: from ludo by reverse-83.fdn.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 22 Jan 2013 23:10:20 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 18 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: reverse-83.fdn.fr User-Agent: Gnus/5.130005 (Ma Gnus v0.5) Emacs/24.2 (gnu/linux) X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 3 =?utf-8?Q?Pluvi=C3=B4se?= an 221 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 83C4 F8E5 10A3 3B4C 5BEA D15D 77DD 95E2 EA52 ECF4 X-OS: x86_64-unknown-linux-gnu Cancel-Lock: sha1:TPl+uaVO87f174qyCBUg8FqdrQA= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-Mailman-Approved-At: Tue, 22 Jan 2013 19:50:18 -0500 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:9910 Archived-At: Hi, Dmitry Roshchin skribis: > Is it normal, that guile tries to load "libguilereadline-v-18.so" instead of > "libguilereadline-v-18.so.18"? Guile version - 2.0.7. You normally have both, as well as libguilereadline-v-18.la, no? Guile uses ltdl for dynamic loading (info "(libtool) Using libltdl"). The rule is to first search for .la files. The .la file tells ltdl that the real library is the .so.18 file, which ltdl then loads. When the .la file is missing, ltdl tries the .so file instead (not the .so.18 file). HTH, Ludo’.