From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Newsgroups: gmane.lisp.guile.bugs Subject: Re: guile build problem with gcc 4.6.0 Date: Thu, 17 Mar 2011 17:58:35 +0100 Message-ID: <8762rhwuo4.fsf@gnu.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1300381140 16011 80.91.229.12 (17 Mar 2011 16:59:00 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 17 Mar 2011 16:59:00 +0000 (UTC) Cc: Douglas Mencken , bug-guile@gnu.org To: Andy Wingo Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Mar 17 17:58:56 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 1Q0GXF-0005RY-9f for guile-bugs@m.gmane.org; Thu, 17 Mar 2011 17:58:53 +0100 Original-Received: from localhost ([127.0.0.1]:51478 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q0GXE-0007f0-Fn for guile-bugs@m.gmane.org; Thu, 17 Mar 2011 12:58:52 -0400 Original-Received: from [140.186.70.92] (port=48093 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q0GX5-0007e7-2B for bug-guile@gnu.org; Thu, 17 Mar 2011 12:58:44 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q0GX3-00009K-M9 for bug-guile@gnu.org; Thu, 17 Mar 2011 12:58:43 -0400 Original-Received: from solo.fdn.fr ([80.67.169.19]:35097) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q0GX3-00008j-Do for bug-guile@gnu.org; Thu, 17 Mar 2011 12:58:41 -0400 Original-Received: from nixey (unknown [193.50.110.208]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client did not present a certificate) (Authenticated sender: lcourtes) by smtp.fdn.fr (Postfix) with ESMTPSA id 26ADB445AF; Thu, 17 Mar 2011 17:58:40 +0100 (CET) X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 27 =?iso-8859-1?Q?Vent=F4se?= an 219 de la =?iso-8859-1?Q?R=E9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 83C4 F8E5 10A3 3B4C 5BEA D15D 77DD 95E2 EA52 ECF4 X-OS: x86_64-unknown-linux-gnu In-Reply-To: (Andy Wingo's message of "Thu, 17 Mar 2011 11:46:21 +0100") User-Agent: Gnus/5.110013 (No Gnus v0.13) Emacs/23.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 80.67.169.19 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:5334 Archived-At: Hello! Andy Wingo writes: > On Mon 14 Mar 2011 17:51, Douglas Mencken writes: > >>> Can you send a log of "make -k" ? Then we can fix them all in one go. >> >> Of course. guile 2.0.0, make -k output (stdout+stderr) attached. > > Thanks. I fixed most of them, but a couple require more thought: > >> i18n.c:120:0: warning: "LC_CTYPE_MASK" redefined [enabled by default] >> /usr/include/locale.h:166:0: note: this is the location of the previous = definition >> i18n.c:121:0: warning: "LC_COLLATE_MASK" redefined [enabled by default] >> /usr/include/locale.h:169:0: note: this is the location of the previous = definition >> i18n.c:122:0: warning: "LC_MESSAGES_MASK" redefined [enabled by default] >> /usr/include/locale.h:171:0: note: this is the location of the previous = definition >> i18n.c:123:0: warning: "LC_MONETARY_MASK" redefined [enabled by default] >> /usr/include/locale.h:170:0: note: this is the location of the previous = definition >> i18n.c:124:0: warning: "LC_NUMERIC_MASK" redefined [enabled by default] >> /usr/include/locale.h:167:0: note: this is the location of the previous = definition >> i18n.c:125:0: warning: "LC_TIME_MASK" redefined [enabled by default] >> /usr/include/locale.h:168:0: note: this is the location of the previous = definition >> i18n.c:158:0: warning: "LC_ALL_MASK" redefined [enabled by default] >> /usr/include/locale.h:193:0: note: this is the location of the previous = definition > > I don't understand why the code is redefining these masks. Ludovic, do > you know? Douglas: What libc are you using? On glibc, these macros shouldn=E2=80=99t= get redefined. Basically, you shouldn=E2=80=99t expect -Werror to work on non-GNU systems. Thanks, Ludo=E2=80=99.