From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Hans Aberg Newsgroups: gmane.lisp.guile.bugs Subject: Re: Compiling from GIT Date: Thu, 10 Feb 2011 22:20:36 +0100 Message-ID: References: <102A4E0F-DA84-484B-8F2F-D08F0D1B3A9E@telia.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1297373268 26125 80.91.229.12 (10 Feb 2011 21:27:48 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 10 Feb 2011 21:27:48 +0000 (UTC) Cc: bug-guile@gnu.org To: Andy Wingo Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Feb 10 22:27:41 2011 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Pne36-0001Wb-UR for guile-bugs@m.gmane.org; Thu, 10 Feb 2011 22:27:37 +0100 Original-Received: from localhost ([127.0.0.1]:35351 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pne36-00020q-4n for guile-bugs@m.gmane.org; Thu, 10 Feb 2011 16:27:36 -0500 Original-Received: from [140.186.70.92] (port=57283 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pne10-0000WS-Uz for bug-guile@gnu.org; Thu, 10 Feb 2011 16:25:28 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PndxG-0004PH-BI for bug-guile@gnu.org; Thu, 10 Feb 2011 16:21:35 -0500 Original-Received: from smtp-out12.han.skanova.net ([195.67.226.212]:42088) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PndxG-0004P8-1l for bug-guile@gnu.org; Thu, 10 Feb 2011 16:21:34 -0500 Original-Received: from [10.0.1.2] (217.210.127.13) by smtp-out12.han.skanova.net (8.5.133) (authenticated as u26619196) id 4D065C2900FF5A1A; Thu, 10 Feb 2011 22:20:38 +0100 In-Reply-To: X-Mailer: Apple Mail (2.1082) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 195.67.226.212 X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:5107 Archived-At: On 9 Feb 2011, at 21:01, Andy Wingo wrote: > On Wed 09 Feb 2011 11:40, Hans Aberg writes: >=20 >> I made a new system installation, and now the GIT version does not >> generate 'configure'. I thought one should just run ./autogen.sh; >> however, this fails, because autoconf (called via autoreconf in this >> script) cannot find gettext.m4, which is in = /usr/local/share/aclocal/, >> which should be copied into ./m4/. >=20 > Sounds like you're installing things to multiple prefixes (/usr and > /usr/local in your case, presumably). >=20 >> I can't see if it is a problem with Guile's configure.ac or some >> installation problem with autoconf-2.68 that makes it not looking = into >> /usr/local/share. >=20 > autoconf will look in /usr/local iff it is installed to /usr/local, > iirc. It turns out that one must install automake too, which contains aclocal = - otherwise the one in /usr/bin will be chosen, and it will chose files = without /usr/local. Then it works as it should, modulo that gcc internal = segmentation fault.