Your message dated Sat, 19 Mar 2005 12:02:10 -0500 with message-id <[EMAIL PROTECTED]> and subject line Bug#238229: fixed in biew 5.6.2-1 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; 16 Mar 2004 01:14:05 +0000 >From [EMAIL PROTECTED] Mon Mar 15 17:14:05 2004 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 1B339g-0007A1-00; Mon, 15 Mar 2004 17:14:04 -0800 Received: from catalunya (host-66-81-195-104.rev.o1.com [66.81.195.104]) by zoot.lafn.org (8.12.3p3/8.12.3) with ESMTP id i2G1Dx6x030528 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for <[EMAIL PROTECTED]>; Mon, 15 Mar 2004 17:14:01 -0800 (PST) (envelope-from [EMAIL PROTECTED]) Received: from kraai by catalunya with local (Exim 4.30) id 1B2ub7-000085-R5 for [EMAIL PROTECTED]; Mon, 15 Mar 2004 08:05:49 -0800 Date: Mon, 15 Mar 2004 08:05:49 -0800 From: Matt Kraai <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: FTBFS: variable named bool conflicts with type name Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ZPt4rx8FFjLCG7dd" Content-Disposition: inline User-Agent: Mutt/1.5.5.1+cvs20040105i Sender: Matt Kraai <[EMAIL PROTECTED]> X-Virus-Scanned: ClamAV version 'clamd / ClamAV version devel-20040209', clamav-milter version '0.66m' Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_12 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-5.6 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12, HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_12 X-Spam-Level: --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Package: biew Version: 5.5.0-1 Severity: serious Tags: patch pbuilder fails to build biew: ... gcc -Wall -D__HAVE_PRAGMA_PACK__=1 -D__UNIX__ -D__OS__="unix" -Uunix -DHAVE_TERMINAL_OUT=1 -D_CURSES_ -D__OS_NAME__='"Unix/Curses"' -D__MACHINE__=ia32 -D__CPU_NAME__='"i386"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -fno-builtin -DCAN_COMPILE_X86_GAS=1 -fshort-enums -O2 -fomit-frame-pointer -DNDEBUG=1 -I. -c plugins/bin/ne.c -o plugins/bin/ne.o plugins/bin/ne.c: In function `ShowModRefNE': plugins/bin/ne.c:372: warning: useless keyword or type name in empty declarationplugins/bin/ne.c:372: warning: empty declaration plugins/bin/ne.c:383: error: parse error before '=' token plugins/bin/ne.c:385: error: parse error before "_Bool" plugins/bin/ne.c:381: error: label `exit' used but not defined plugins/bin/ne.c:394: error: break statement not within loop or switch plugins/bin/ne.c: At top level: plugins/bin/ne.c:396: error: parse error before '}' token plugins/bin/ne.c:397: warning: type defaults to `int' in declaration of `ma_Destroy' plugins/bin/ne.c:397: warning: parameter names (without types) in function declaration plugins/bin/ne.c:397: error: conflicting types for `ma_Destroy' biewutil.h:146: error: previous declaration of `ma_Destroy' plugins/bin/ne.c:397: warning: data definition has no type or storage class plugins/bin/ne.c:398: error: parse error before ':' token plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1556: warning: initialization from incompatible pointer type plugins/bin/ne.c:1557: warning: initialization from incompatible pointer type plugins/bin/ne.c:1557: warning: initialization from incompatible pointer type plugins/bin/ne.c:1557: warning: initialization from incompatible pointer type plugins/bin/ne.c:1559: warning: initialization from incompatible pointer type plugins/bin/ne.c:1560: warning: initialization from incompatible pointer type plugins/bin/ne.c:1561: warning: initialization from incompatible pointer type plugins/bin/ne.c:1562: warning: initialization from incompatible pointer type plugins/bin/ne.c:1563: warning: initialization from incompatible pointer type plugins/bin/ne.c:1564: warning: initialization from incompatible pointer type plugins/bin/ne.c:1565: warning: initialization from incompatible pointer type plugins/bin/ne.c:1566: warning: initialization from incompatible pointer type plugins/bin/ne.c:1567: warning: initialization from incompatible pointer type plugins/bin/ne.c:342: warning: `__ReadModRefNamesNE' defined but not used make[1]: *** [plugins/bin/ne.o] Error 1 ... The error occurs because there is a variable named bool, which conflicts with the bool type. The attached patch renames the variable __bool, as in a later function, which fixes the problem. -- Matt Kraai [EMAIL PROTECTED] http://ftbfs.org/ --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch diff -ru biew-5.5.0-old/plugins/bin/ne.c biew-5.5.0/plugins/bin/ne.c --- biew-5.5.0-old/plugins/bin/ne.c 2004-03-15 07:46:53.000000000 -0800 +++ biew-5.5.0/plugins/bin/ne.c 2004-03-15 07:48:08.000000000 -0800 @@ -369,7 +369,7 @@ { BGLOBAL handle; int ret; - tBool bool; + tBool __bool; unsigned nnames; unsigned long fret; memArray * obj; @@ -380,9 +380,9 @@ if(!(nnames = ne.neModuleReferenceTableCount)) { NotifyBox(NOT_ENTRY,MOD_REFER); return fret; } if(!(obj = ma_Build(nnames,True))) goto exit; w = PleaseWaitWnd(); - bool = __ReadModRefNamesNE(handle,obj); + __bool = __ReadModRefNamesNE(handle,obj); CloseWnd(w); - if(bool) + if(__bool) { while(1) { --ZPt4rx8FFjLCG7dd-- --------------------------------------- Received: (at 238229-close) by bugs.debian.org; 19 Mar 2005 17:23:22 +0000 >From [EMAIL PROTECTED] Sat Mar 19 09:23:21 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 1DChfV-0006Uc-00; Sat, 19 Mar 2005 09:23:21 -0800 Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian)) id 1DChL0-0004T9-00; Sat, 19 Mar 2005 12:02:10 -0500 From: Stefan Alfredsson <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.55 $ Subject: Bug#238229: fixed in biew 5.6.2-1 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Sat, 19 Mar 2005 12:02:10 -0500 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: X-CrossAssassin-Score: 2 Source: biew Source-Version: 5.6.2-1 We believe that the bug you reported is fixed in the latest version of biew, which is due to be installed in the Debian FTP archive: biew_5.6.2-1.diff.gz to pool/main/b/biew/biew_5.6.2-1.diff.gz biew_5.6.2-1.dsc to pool/main/b/biew/biew_5.6.2-1.dsc biew_5.6.2-1_i386.deb to pool/main/b/biew/biew_5.6.2-1_i386.deb biew_5.6.2.orig.tar.gz to pool/main/b/biew/biew_5.6.2.orig.tar.gz 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. Stefan Alfredsson <[EMAIL PROTECTED]> (supplier of updated biew 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: Sat, 19 Mar 2005 17:16:24 +0100 Source: biew Binary: biew Architecture: source i386 Version: 5.6.2-1 Distribution: unstable Urgency: low Maintainer: Stefan Alfredsson <[EMAIL PROTECTED]> Changed-By: Stefan Alfredsson <[EMAIL PROTECTED]> Description: biew - console hex viewer/editor with disassembler Closes: 238229 285527 300347 Changes: biew (5.6.2-1) unstable; urgency=low . * New upstream release * Upstream claims all AMD64 related problems are fixed (Closes: #300347) * Patched for AMD + gcc 4 (please verify) (Closes: #285527) * Variable 'bool' is renamed by upstream (Closes: #238229) Files: e6fb910ce8c4f2c9bcb74a74ef96d135 600 utils optional biew_5.6.2-1.dsc d236a732a2d0fa5ab41050a3b486ee40 704517 utils optional biew_5.6.2.orig.tar.gz fb88af1b76a2a05a84544caacf2c2a1c 5493 utils optional biew_5.6.2-1.diff.gz 3a9301ce96166278aaff0c5a941cecfa 382078 utils optional biew_5.6.2-1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQFCPFYe7WvuLRx04LcRAp8HAJ0Uq8Hjdwc9xZcyhG1B0NKEVRDnSACg0e3b p1RZE/4SGmQJfUVO2sA4E4s= =NBRq -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]