Your message dated Wed, 22 Aug 2001 21:07:59 +0200 (CEST) with message-id <[EMAIL PROTECTED]> and subject line These bugs can be closed 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.) Darren Benham (administrator, Debian Bugs database) -------------------------------------- Received: (at maintonly) by bugs.debian.org; 4 Jul 2001 22:02:50 +0000 >From [EMAIL PROTECTED] Wed Jul 04 17:02:50 2001 Return-path: <[EMAIL PROTECTED]> Received: from atlrel2.hp.com [::ffff:156.153.255.202] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 15HujS-0001HC-00; Wed, 04 Jul 2001 17:02:50 -0500 Received: from security.hp.com (cranston.fc.hp.com [15.1.44.224]) by atlrel2.hp.com (Postfix) with ESMTP id B9382257 for <[EMAIL PROTECTED]>; Wed, 4 Jul 2001 18:02:47 -0400 (EDT) Received: from smallone.fc.hp.com (smallone.fc.hp.com [15.1.44.235]) by security.hp.com (Postfix) with ESMTP id 3C97B1872C; Wed, 4 Jul 2001 16:02:47 -0600 (MDT) Received: by smallone.fc.hp.com (Postfix, from userid 1001) id C6BB917FB5; Wed, 4 Jul 2001 15:59:26 -0600 (MDT) From: LaMont Jones <[EMAIL PROTECTED]> Subject: ncbi-tools6: build failure with gcc>=2.96 To: [EMAIL PROTECTED] X-Mailer: bug 3.3.9 Message-Id: <[EMAIL PROTECTED]> Date: Wed, 4 Jul 2001 15:59:26 -0600 (MDT) Delivered-To: [EMAIL PROTECTED] Package: ncbi-tools6 Version: 6.0.2-2 Severity: serious Filing this as serious because hppa (gcc 3.0) and ia64 (gcc 2.96) are planning to release with woody, and require this fix. As of gcc 2.96, passing sub-int's to va_arg is correctly detected as an error (since it promotes to int). The attached patch fixes the problem. -- System Information Debian Release: testing/unstable Kernel Version: Linux smallone 2.4.0-pa51 #44 Sun Jul 1 20:05:11 MDT 2001 parisc64 unknown --- ./shared/src/tsprintf.c.save Wed Jul 4 15:55:43 2001 +++ ./shared/src/tsprintf.c Wed Jul 4 15:18:56 2001 @@ -396,9 +396,9 @@ num = va_arg(args, unsigned long); else if (qualifier == 'h') if (flags & SIGNED) - num = va_arg(args, short); + num = va_arg(args, int); else - num = va_arg(args, unsigned short); + num = va_arg(args, unsigned int); else if (flags & SIGNED) num = va_arg(args, int); else --------------------------------------- Received: (at 103550-done) by bugs.debian.org; 22 Aug 2001 19:08:15 +0000 >From [EMAIL PROTECTED] Wed Aug 22 14:08:15 2001 Return-path: <[EMAIL PROTECTED]> Received: from hermes.fachschaften.tu-muenchen.de [129.187.176.19] by master.debian.org with smtp (Exim 3.12 1 (Debian)) id 15ZdMM-0002Vc-00; Wed, 22 Aug 2001 14:08:15 -0500 Received: (qmail 17460 invoked from network); 22 Aug 2001 19:08:03 -0000 Received: from mimas.fachschaften.tu-muenchen.de (HELO mimas) (129.187.176.26) by hermes.fachschaften.tu-muenchen.de with SMTP; 22 Aug 2001 19:08:03 -0000 Date: Wed, 22 Aug 2001 21:07:59 +0200 (CEST) From: Adrian Bunk <[EMAIL PROTECTED]> X-X-Sender: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> Subject: These bugs can be closed Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Delivered-To: [EMAIL PROTECTED] These bugs in packages maintained by Debian QA were already closed (and fixed packages are already in unstable) but only marked as fixed. cu Adrian -- Get my GPG key: finger [EMAIL PROTECTED] | gpg --import Fingerprint: B29C E71E FE19 6755 5C8A 84D4 99FC EA98 4F12 B400