From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Installing guix from Git Date: Fri, 07 Jun 2013 18:22:34 +0200 Message-ID: <87y5alevqt.fsf@gnu.org> References: <20913.65355.709961.445483@Konrad-Hinsens-MacBook-Pro.local> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51143) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkzVs-0007zL-Fb for bug-guix@gnu.org; Fri, 07 Jun 2013 12:27:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UkzVr-0004gn-Hx for bug-guix@gnu.org; Fri, 07 Jun 2013 12:27:40 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:50392) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UkzVr-0004gh-Ae for bug-guix@gnu.org; Fri, 07 Jun 2013 12:27:39 -0400 In-Reply-To: <20913.65355.709961.445483@Konrad-Hinsens-MacBook-Pro.local> (Konrad Hinsen's message of "Fri, 7 Jun 2013 17:42:03 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Konrad Hinsen Cc: bug-guix@gnu.org Konrad Hinsen skribis: > After initially playing with Guix 0.2, I now want to switch to the bleedi= ng edge. > I cloned the Git repository, ran "autoreconf -vi", and then "configure". = This > ends with an error message: > > ./configure: line 6575: syntax error near unexpected token `GUILE,' > ./configure: line 6575: `PKG_CHECK_MODULES(GUILE, guile-2.0 >=3D 2.0.5)' This message means that Autoconf didn=E2=80=99t pick up the definition of t= he =E2=80=98PKG_CHECK_MODULES=E2=80=99 M4 macro. That macro is provided by pkg.m4, from the =E2=80=98pkg-config=E2=80=99 pac= kage. Thus, if you install =E2=80=98pkg-config=E2=80=99, Autoconf should automatically = find it. (If you still have Guix 0.2 installed, you can run =E2=80=98guix package -i autoconf -i automake -i pkg-config=E2=80=99, and export the environment variables as noted.) Let us know how it goes. Thanks, Ludo=E2=80=99.