From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.bugs Subject: Re: No declaration for isblank Date: Wed, 30 Jan 2008 22:19:58 +0000 Message-ID: <873asfufap.fsf@ossau.uklinux.net> References: <87r6kuz6sz.fsf@ossau.uklinux.net> <87wsulokn8.fsf@laas.fr> <87r6jo188q.fsf@ossau.uklinux.net> <87d4v817ut.fsf@ossau.uklinux.net> <87bqasjfus.fsf@chbouib.org> <877ileylfp.fsf@ossau.uklinux.net> <87ir4xlxd5.fsf@laas.fr> <87r6jkby8v.fsf@ossau.uklinux.net> <87abq8ep43.fsf@laas.fr> <87myqn35u8.fsf@dellish.bordeaux.inria.fr> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1201731619 22866 80.91.229.12 (30 Jan 2008 22:20:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 30 Jan 2008 22:20:19 +0000 (UTC) Cc: bug-guile@gnu.org To: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Wed Jan 30 23:20:40 2008 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.50) id 1JKLIM-00006p-8H for guile-bugs@m.gmane.org; Wed, 30 Jan 2008 23:20:38 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKLHu-0007GQ-RF for guile-bugs@m.gmane.org; Wed, 30 Jan 2008 17:20:10 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JKLHq-0007GE-RI for bug-guile@gnu.org; Wed, 30 Jan 2008 17:20:06 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JKLHo-0007Fg-U2 for bug-guile@gnu.org; Wed, 30 Jan 2008 17:20:06 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JKLHo-0007FN-No for bug-guile@gnu.org; Wed, 30 Jan 2008 17:20:04 -0500 Original-Received: from mail3.uklinux.net ([80.84.72.33]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JKLHk-0002yG-F0; Wed, 30 Jan 2008 17:20:00 -0500 Original-Received: from arudy (host86-145-183-175.range86-145.btcentralplus.com [86.145.183.175]) by mail3.uklinux.net (Postfix) with ESMTP id C821D1F675A; Wed, 30 Jan 2008 22:19:59 +0000 (GMT) Original-Received: from laruns (laruns [192.168.0.10]) by arudy (Postfix) with ESMTP id 084203800A; Wed, 30 Jan 2008 22:19:58 +0000 (GMT) In-Reply-To: <87myqn35u8.fsf@dellish.bordeaux.inria.fr> (Ludovic =?iso-8859-1?Q?Court=E8s's?= message of "Wed, 30 Jan 2008 12:34:07 +0100") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 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:3746 Archived-At: ludo@gnu.org (Ludovic Court=E8s) writes: > Hi, > > I'm slowly getting back to Guile, and the first thing I came across was > this old Gnulib-related bootstrap issue (HEAD). > > ludovic.courtes@laas.fr (Ludovic Court=E8s) writes: > >> My `gnulib-cache.m4' is the same as the one in CVS HEAD: >> >> http://cvs.savannah.gnu.org/viewvc/guile/guile-core/m4/gnulib-cache.m4= ?revision=3D1.1&root=3Dguile&view=3Dmarkup >> >> It contains the line "gl_MODULES([alloca strcase])" so `gnulib-tool' >> must at least pull the `alloca' and `strcase' modules. It should also >> pull their dependencies; `strcase' happens to depend on `string', which >> in turn depends on `extensions', the module that ensures `_GNU_SOURCE' >> is defined when available. >> >> (Actually, we should be importing `extensions' explicitly rather than >> rely on this side effect.) > > I followed my own suggestion and added `extensions' to the list of > required modules, since it turns out that it was no longer pulled by the > other modules. Hopefully, that fixes this very problem once for all. Sounds good. I think most of this problem was actually me not understanding how gnulib works, but I agree that it makes sense to import extensions explicitly. > On a related note, when bootstrapping, `autoreconf' complains that we're > using `AM_GNU_GETTEXT' without having `po' in `SUBDIRS'---which is > normal since no string is internationalized. Still, is there something > we could do about it? I guess we could start some token internationalization... Perhaps we could start with the "ERROR" in display_header(), and who knows where that might lead? Translation of Guile's messages can only be a good thing, n'est-ce pas? (On the other hand, I haven't noticed anyone clamouring for this.) > Thanks, > Ludovic. Regards, Neil