From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1O1fBg-0004Ux-4O for mharc-grub-devel@gnu.org; Tue, 13 Apr 2010 08:25:52 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O1fBd-0004Ts-Hf for grub-devel@gnu.org; Tue, 13 Apr 2010 08:25:49 -0400 Received: from [140.186.70.92] (port=37500 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O1fBb-0004T8-HP for grub-devel@gnu.org; Tue, 13 Apr 2010 08:25:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O1fBa-0001x0-0N for grub-devel@gnu.org; Tue, 13 Apr 2010 08:25:47 -0400 Received: from mail.gmx.net ([213.165.64.20]:44741) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1O1fBX-0001wU-Sw for grub-devel@gnu.org; Tue, 13 Apr 2010 08:25:45 -0400 Received: (qmail invoked by alias); 13 Apr 2010 12:19:00 -0000 Received: from 165.126.46.212.adsl.ncore.de (HELO 192.168.2.69) [212.46.126.165] by mail.gmx.net (mp006) with SMTP; 13 Apr 2010 14:19:00 +0200 X-Authenticated: #2145628 X-Provags-ID: V01U2FsdGVkX1+jJjMnoxGj5rl/xhlnLPeGP71eLEsEpk0MPvhTJL 2w6PH+mCFOVcfE Date: Tue, 13 Apr 2010 14:18:15 +0200 From: "Thomas Schmitt" To: grub-devel@gnu.org References: <4BC45B28.8000401@zetam.org> In-Reply-To: <4BC45B28.8000401@zetam.org> Message-Id: <106334060327668@192.168.2.69> X-Y-GMX-Trusted: 0 X-FuHaFi: 0.59999999999999998 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Subject: Re: Compilation error of xorriso on MacOSX X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2010 12:25:49 -0000 Hi, Yves Blusseau wrote: > I have the latest readline library (6.1) installed on my MacOSX > /opt/local/lib/libreadline.a > But i think configure have tried to use the one in the standard path > (/usr/lib): > Perhaps i can use an option of configure or environnement variable to > "force" the linker ? Good question. My autotools knowledge grows around some vacuum bubbles since a few years. Much of it is still a riddle to me. I understand that variables CPPFLAGS, CFLAGS, LDFLAGS, LIBS directly influence the compilation command. Reading man ld on GNU/Linux -Lsearchdir [...] The directories are searched in the order in which they are specified on the command line. Directories specified on the command line are searched before the default directories. i would try make clean export LDFLAGS="-L/opt/local/lib" ./configure ...options... make So you should read the documentation of your linker for a similar promise. Have a nice day :) Thomas