Your message dated Thu, 21 Jul 2005 18:44:26 +0100
with message-id <[EMAIL PROTECTED]>
and subject line gauche: FTBFS (amd64/gcc-4.0): invalid storage class for 
function 'compile_named_let_body'
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 1 Mar 2005 15:31:37 +0000
>From [EMAIL PROTECTED] Tue Mar 01 07:31:36 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c187024.adsl.hansenet.de (localhost.localdomain) [213.39.187.24] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1D69LU-0001fX-00; Tue, 01 Mar 2005 07:31:36 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
        id 1D6AHn-00077S-UP; Tue, 01 Mar 2005 17:31:51 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: gauche: FTBFS (amd64/gcc-4.0): invalid storage class for function 
'compile_named_let_body'
Message-Id: <[EMAIL PROTECTED]>
Date: Tue, 01 Mar 2005 17:31:51 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Package: gauche
Severity: normal
Tags: patch

When building 'gauche' on amd64 with gcc-4.0,
I get the following error:

x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I./../gc/include   -g -O2 -fPIC  -c 
compile.c
compile.c: In function 'compile_let':
compile.c:1470: error: invalid storage class for function 
'compile_named_let_body'
compile.c:1476: error: 'compile_named_let_body' undeclared (first use in this 
function)
compile.c:1476: error: (Each undeclared identifier is reported only once
compile.c:1476: error: for each function it appears in.)
make[2]: *** [compile.o] Error 1
make[2]: Leaving directory `/gauche-0.7.4.2/src'

With the attached patch 'gauche' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/gauche-0.7.4.2/src/compile.c ./src/compile.c
--- ../tmp-orig/gauche-0.7.4.2/src/compile.c    2004-01-25 12:11:38.000000000 
+0100
+++ ./src/compile.c     2005-03-01 17:19:46.725784494 +0100
@@ -1417,6 +1417,8 @@
     }
 }
 
+static ScmObj compile_named_let_body(ScmObj, ScmObj, int, int *);
+
 static ScmObj compile_let(ScmObj form, ScmObj env, int ctx, int *depth, void 
*data)
 {
     long type = (long)data;
@@ -1466,8 +1468,6 @@
                                   body, compile_body,
                                   env, ctx, depth);
     } else {
-        /* Named let. */
-        static ScmObj compile_named_let_body(ScmObj, ScmObj, int, int *);
         /* TODO: this is broken if lambda is locally bound! */
         ScmObj proc = Scm_Cons(id_lambda, Scm_Cons(vars, body));
         return compile_let_family(form, SCM_LIST1(name), SCM_LIST1(proc),

---------------------------------------
Received: (at 297578-done) by bugs.debian.org; 21 Jul 2005 17:44:32 +0000
>From [EMAIL PROTECTED] Thu Jul 21 10:44:32 2005
Return-path: <[EMAIL PROTECTED]>
Received: from s2.ukfsn.org (mail.ukfsn.org) [217.158.120.143] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1Dvf5z-0002dq-00; Thu, 21 Jul 2005 10:44:32 -0700
Received: from localhost (lucy.ukfsn.org [127.0.0.1])
        by mail.ukfsn.org (Postfix) with ESMTP
        id 8BD4EE6D8E; Thu, 21 Jul 2005 18:43:33 +0100 (BST)
Received: from mail.ukfsn.org ([127.0.0.1])
 by localhost (lucy.ukfsn.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id 11969-08; Thu, 21 Jul 2005 18:43:33 +0100 (BST)
Received: from hardknott.home.whinlatter.ukfsn.org 
(dsl-80-41-11-78.access.as9105.com [80.41.11.78])
        by mail.ukfsn.org (Postfix) with ESMTP
        id 376B8E6D49; Thu, 21 Jul 2005 18:43:33 +0100 (BST)
Received: from rleigh by hardknott.home.whinlatter.ukfsn.org with local (Exim 
4.52)
        id 1Dvf5u-000242-Mv; Thu, 21 Jul 2005 18:44:26 +0100
From: Roger Leigh <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: Hatta Shuzo <[EMAIL PROTECTED]>
Subject: Re: gauche: FTBFS (amd64/gcc-4.0): invalid storage class for function 
'compile_named_let_body'
Date: Thu, 21 Jul 2005 18:44:26 +0100
Message-ID: <[EMAIL PROTECTED]>
User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-1.4 required=4.0 tests=BAYES_00,UPPERCASE_25_50 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

This bug is no longer present in unstable (compile.c was fixed in
0.8.4).


Regards,
Roger

- -- 
Roger Leigh
                Printing on GNU/Linux?  http://gimp-print.sourceforge.net/
                Debian GNU/Linux        http://www.debian.org/
                GPG Public Key: 0x25BFB848.  Please sign and encrypt your mail.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8 <http://mailcrypt.sourceforge.net/>

iD8DBQFC3975VcFcaSW/uEgRAv6FAJ9+U481/lzRabpGqLupkTST9wlBDQCgwvKN
oaUrCmyCNNJPt3+/BdaVMMc=
=cQE9
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to