From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Glibc/hurd work till now Date: Wed, 19 Mar 2014 21:17:24 +0100 Message-ID: <87vbva54ff.fsf@gnu.org> References: <87y5078wfh.fsf@gnu.org> <20140318145504.GA30160@debian> <8761nb8pcu.fsf@gnu.org> <87y507fdpg.fsf@gnu.org> 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]:56908) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQMvg-00008C-58 for Guix-devel@gnu.org; Wed, 19 Mar 2014 16:17:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WQMvX-0006aN-Oe for Guix-devel@gnu.org; Wed, 19 Mar 2014 16:17:36 -0400 Received: from hera.aquilenet.fr ([2a01:474::1]:40952) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQMvX-0006a5-IB for Guix-devel@gnu.org; Wed, 19 Mar 2014 16:17:27 -0400 In-Reply-To: (Manolis Ragkousis's message of "Wed, 19 Mar 2014 19:38:08 +0000") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Manolis Ragkousis Cc: Guix-devel@gnu.org Manolis Ragkousis skribis: > I am getting an error in the autoreconf phase for libpthread in glibc/hurd > here > Check the attached build.log file >> #:phases (alist-cons-before >> 'pre-configure 'autoconf >> (lambda _ >> (system* "autoreconf" "-vi" "libpthread")) > > I placed libtool as a native input as Mark Weaver suggested but it doesn't > seem to fix it > ("libtool" ,libtool "bin") > > Any ideas? [...] > Makefile.am:77: error: Libtool library used but 'LIBTOOL' is undefined > Makefile.am:77: The usual way to define 'LIBTOOL' is to add 'LT_INIT' > Makefile.am:77: to 'configure.ac' and run 'aclocal' and 'autoconf' agai= n. > Makefile.am:77: If 'LT_INIT' is in 'configure.ac', make sure > Makefile.am:77: its definition is in aclocal's search path. This error message is confusing, but you could try adding just Libtool: ("libtool" ,libtool") This is where Libtool=E2=80=99s Autoconf macros live. HTH, Ludo=E2=80=99.