From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Greg Troxel Newsgroups: gmane.lisp.guile.devel Subject: Re: i guess we're frozen & stuff Date: Tue, 11 Aug 2009 13:04:39 -0400 Message-ID: References: <8763cuwdkl.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" X-Trace: ger.gmane.org 1250010635 1515 80.91.229.12 (11 Aug 2009 17:10:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 11 Aug 2009 17:10:35 +0000 (UTC) Cc: guile-devel@gnu.org To: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Aug 11 19:10:27 2009 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Mauri-0003wM-CZ for guile-devel@m.gmane.org; Tue, 11 Aug 2009 19:10:26 +0200 Original-Received: from localhost ([127.0.0.1]:43039 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Maurg-0004yH-EE for guile-devel@m.gmane.org; Tue, 11 Aug 2009 13:10:24 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MaumH-0002y0-Fh for guile-devel@gnu.org; Tue, 11 Aug 2009 13:04:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MaumC-0002vv-Rs for guile-devel@gnu.org; Tue, 11 Aug 2009 13:04:49 -0400 Original-Received: from [199.232.76.173] (port=38007 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MaumC-0002vo-Es for guile-devel@gnu.org; Tue, 11 Aug 2009 13:04:44 -0400 Original-Received: from mx20.gnu.org ([199.232.41.8]:17039) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Maum9-0003VN-UT; Tue, 11 Aug 2009 13:04:42 -0400 Original-Received: from fnord.ir.bbn.com ([192.1.100.210]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Maum9-0004OQ-BE; Tue, 11 Aug 2009 13:04:41 -0400 Original-Received: by fnord.ir.bbn.com (Postfix, from userid 10853) id 64D8D53F7; Tue, 11 Aug 2009 13:04:40 -0400 (EDT) X-Hashcash: 1:20:090811:ludo@gnu.org::zW+/sjWmIp+bsTlh:000005PqG X-Hashcash: 1:20:090811:guile-devel@gnu.org::zW+/sjWmIp+bsTlh:000000000000000000000000000000000000000000FZcD In-Reply-To: <8763cuwdkl.fsf@gnu.org> ("Ludovic =?iso-8859-1?Q?Court=E8s?= =?iso-8859-1?Q?=22's?= message of "Tue, 11 Aug 2009 17:54:50 +0200") User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.3 (berkeley-unix) X-Detected-Operating-System: by mx20.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:9068 Archived-At: --=-=-= Does libunistring's "make check" pass on this platform? should have tried that. testlocale.c fails on line 38 with: test-locale.c:38: error: expected ')' before numeric constant expanding that with cpp gets me the rather stunning: extern int (* verify_function__ (void)) [(!!sizeof (struct { unsigned int verify_error_if_negative_size__: (sizeof (void *)0 == sizeof (void *)) ? 1 : -1; }))]; which I'll rewrap to: extern int (* verify_function__ (void)) [(!!sizeof (struct { unsigned int verify_error_if_negative_size__ : (sizeof (void *)0 == sizeof (void *)) ? 1 : -1; } ))]; which seems odd but not necessarily wrong. The original line was verify (sizeof NULL == sizeof (void *)); So it seems that NULL is expanding to (void *) 0, and "sizeof (void *) 0" is not legit. AFAIK sizeof is specified to work on variables and types, and NULL is neither a variable nor a type. Is NULL something else on Linux? Fixing that so sizeof(NULL) gets this to pass with only one failure: test-striconveh.c:389: assertion failed Abort (core dumped) FAIL: test-striconveh --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (NetBSD) iEYEARECAAYFAkqBpKgACgkQ+vesoDJhHiU8pQCgm8AO+BJA3GP7sEDR16ln2KfD suoAn0wxn2PocRuXcBvcG8LSUy0oAnPs =hCtk -----END PGP SIGNATURE----- --=-=-=--