Your message dated Tue, 12 Jul 2005 04:17:23 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#317865: fixed in baycomepp 0.10-8
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; 12 Jul 2005 03:25:39 +0000
>From [EMAIL PROTECTED] Mon Jul 11 20:25:39 2005
Return-path: <[EMAIL PROTECTED]>
Received: from zoot.lafn.org [206.117.18.6] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DsBOt-0004xJ-00; Mon, 11 Jul 2005 20:25:39 -0700
Received: from localhost.localdomain 
(pool-71-104-165-253.lsanca.dsl-w.verizon.net [71.104.165.253])
        (authenticated bits=0)
        by zoot.lafn.org (8.13.1/8.13.1) with ESMTP id j6C3PbPn073158
        (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
        for <[EMAIL PROTECTED]>; Mon, 11 Jul 2005 20:25:38 -0700 (PDT)
        (envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost.localdomain with local (Exim 4.50)
        id 1Ds71u-0002Of-CO
        for [EMAIL PROTECTED]; Mon, 11 Jul 2005 15:45:38 -0700
Date: Mon, 11 Jul 2005 15:45:38 -0700
From: Matt Kraai <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: FTBFS: Jumps into statement expressions
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
        protocol="application/pgp-signature"; boundary="GDLQamdgIxhPcIwq"
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on 
zoot.lafn.org
X-Virus-Status: Clean
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=-2.6 required=4.0 tests=BAYES_00,DATE_IN_PAST_03_06 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 


--GDLQamdgIxhPcIwq
Content-Type: multipart/mixed; boundary="nWEzmRaGLXxZdI3i"
Content-Disposition: inline


--nWEzmRaGLXxZdI3i
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: baycomepp
Version: 0.10-7
Severity: serious

This package fails to build because it contains jumps into statement
expressions:

gcc -DHAVE_CONFIG_H -I. -I. -I.. -DCONFIGDIR=3D\"/usr/etc\" -DLOCALSTATEDIR=
=3D\"/usr/var\"  -I../directx/include -I../directx/include/directx6      -I=
=2E. -fPIC    -O2 -g -Wall -c fpgatests.c
fpgatests.c: In function 'ledtest':
fpgatests.c:319: warning: operation on 'led' may be undefined
fpgatests.c: In function 'chkledtest':
fpgatests.c:579: warning: operation on 'led' may be undefined
fpgatests.c: In function 'hdlc_receive':
fpgatests.c:2016: error: jump into statement expression
fpgatests.c:2016: error: jump into statement expression
fpgatests.c:2017: error: jump into statement expression
fpgatests.c:2017: error: jump into statement expression
fpgatests.c:2018: error: jump into statement expression
fpgatests.c:2018: error: jump into statement expression
fpgatests.c:2019: error: jump into statement expression
fpgatests.c:2019: error: jump into statement expression
fpgatests.c:2020: error: jump into statement expression
fpgatests.c:2020: error: jump into statement expression
fpgatests.c:2021: error: jump into statement expression
fpgatests.c:2021: error: jump into statement expression
fpgatests.c:2022: error: jump into statement expression
fpgatests.c:2022: error: jump into statement expression
fpgatests.c:2023: error: jump into statement expression
fpgatests.c:2023: error: jump into statement expression
make[3]: *** [fpgatests.o] Error 1
make[3]: Leaving directory `/tmp/buildd/baycomepp-0.10/main'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/baycomepp-0.10'
make[1]: *** [all-recursive-am] Error 2
make[1]: Leaving directory `/tmp/buildd/baycomepp-0.10'
make: *** [build] Error 2

The attached patch fixes these problems.

--=20
Matt

--nWEzmRaGLXxZdI3i
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="baycomepp_0.10-7.patch"
Content-Transfer-Encoding: quoted-printable

diff -u baycomepp-0.10/main/fpgatests.c baycomepp-0.10/main/fpgatests.c
--- baycomepp-0.10/main/fpgatests.c
+++ baycomepp-0.10/main/fpgatests.c
@@ -1973,7 +1973,7 @@
   enditer##j:
=20
 #define DECODEITERB(j)                                                    =
             \
-({                                                                        =
             \
+{                                                                         =
             \
   flgabrt##j:                                                             =
             \
         if (!(notbitstream & (0x1fc << j))) {              /* abort receiv=
ed */        \
                 state =3D 0;                                              =
               \
@@ -1992,7 +1992,7 @@
         numbits--;                                                        =
             \
         bitbuf =3D (bitbuf & ((~0xff) << j)) | ((bitbuf & ~((~0xff) << j))=
 << 1);        \
         goto enditer##j;                                                  =
             \
-})
+}
        =20
 /* ---------------------------------------------------------------------- =
*/
=20
diff -u baycomepp-0.10/udriver/drvresident.c baycomepp-0.10/udriver/drvresi=
dent.c
--- baycomepp-0.10/udriver/drvresident.c
+++ baycomepp-0.10/udriver/drvresident.c
@@ -217,7 +217,7 @@
   encodeend##j:
=20
 #define ENCODEITERB(j)                                          \
-({                                                              \
+{                                                               \
   stuff##j:                                                     \
         bitstream &=3D ~(0x100 << j);                             \
         bitbuf =3D (bitbuf & (((2 << j) << numbit) - 1)) |        \
@@ -225,7 +225,7 @@
         numbit++;                                               \
         notbitstream =3D ~bitstream;                              \
         goto encodeend##j;                                      \
-})
+}
=20
 static int hdlc_enqueue(u_int8_t *pkt, int len)
 {
@@ -326,7 +326,7 @@
   enditer##j:
=20
 #define DECODEITERB(j)                                                    =
             \
-({                                                                        =
             \
+{                                                                         =
             \
   flgabrt##j:                                                             =
             \
         if (!(notbitstream & (0x1fc << j))) {              /* abort receiv=
ed */        \
                 stat =3D 0;                                               =
               \
@@ -345,7 +345,7 @@
         numbits--;                                                        =
             \
         bitbuf =3D (bitbuf & ((~0xff) << j)) | ((bitbuf & ~((~0xff) << j))=
 << 1);        \
         goto enditer##j;                                                  =
             \
-})
+}
        =20
 /* --------------------------------------------------------------------- */
=20

--nWEzmRaGLXxZdI3i--

--GDLQamdgIxhPcIwq
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC0vaRfNdgYxVXvBARAnCEAJ0TGrfW4blJ4uT2UTbplWtEsWTi0QCeI7EX
arzCg/V9uw7kB8iLuFJdV5k=
=mAL6
-----END PGP SIGNATURE-----

--GDLQamdgIxhPcIwq--

---------------------------------------
Received: (at 317865-close) by bugs.debian.org; 12 Jul 2005 08:23:36 +0000
>From [EMAIL PROTECTED] Tue Jul 12 01:23:36 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DsG3E-0008LX-00; Tue, 12 Jul 2005 01:23:36 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DsFxD-0004vB-00; Tue, 12 Jul 2005 04:17:23 -0400
From: Joop Stakenborg <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#317865: fixed in baycomepp 0.10-8
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 12 Jul 2005 04:17:23 -0400
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=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Source: baycomepp
Source-Version: 0.10-8

We believe that the bug you reported is fixed in the latest version of
baycomepp, which is due to be installed in the Debian FTP archive:

baycomepp_0.10-8.diff.gz
  to pool/main/b/baycomepp/baycomepp_0.10-8.diff.gz
baycomepp_0.10-8.dsc
  to pool/main/b/baycomepp/baycomepp_0.10-8.dsc
baycomepp_0.10-8_i386.deb
  to pool/main/b/baycomepp/baycomepp_0.10-8_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joop Stakenborg <[EMAIL PROTECTED]> (supplier of updated baycomepp package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


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

Format: 1.7
Date: Tue, 12 Jul 2005 10:05:29 +0200
Source: baycomepp
Binary: baycomepp
Architecture: source i386
Version: 0.10-8
Distribution: unstable
Urgency: low
Maintainer: Joop Stakenborg <[EMAIL PROTECTED]>
Changed-By: Joop Stakenborg <[EMAIL PROTECTED]>
Description: 
 baycomepp  - Drivers for the HB9JNX packet radio epp modem
Closes: 317865
Changes: 
 baycomepp (0.10-8) unstable; urgency=low
 .
   * Fixed a FTBFS due to jumps into statement expressions, patch by Matt
     Kraai, thanks! Closes: #317865.
Files: 
 222d2ac4b078a455970e63d1082564ff 619 hamradio optional baycomepp_0.10-8.dsc
 2b6b39feba0db8d46bfdd95947bdc830 10119 hamradio optional 
baycomepp_0.10-8.diff.gz
 a5191a471cf8696a32d3596f8b1e922a 336378 hamradio optional 
baycomepp_0.10-8_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC03rtnuUI/ps3DJoRAnsbAJ9bB37SBLVvpb0JdGa//9BAuc7LvACfeCS2
gsf56WuDs9FvR6YNTWJIE9w=
=tEht
-----END PGP SIGNATURE-----


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

Reply via email to