[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#103550: marked as done (ncbi-tools6: build failure with gcc>=2.96)



Your message dated Wed, 22 Aug 2001 21:07:59 +0200 (CEST)
with message-id <Pine.NEB.4.33.0108222059480.21540-100000@mimas.fachschaften.tu-muenchen.de>
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 lamont@smallone.fc.hp.com Wed Jul 04 17:02:50 2001
Return-path: <lamont@smallone.fc.hp.com>
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 <maintonly@bugs.debian.org>; 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 <lamont@smallone.fc.hp.com>
Subject: ncbi-tools6: build failure with gcc>=2.96
To: maintonly@bugs.debian.org
X-Mailer: bug 3.3.9
Message-Id: <20010704215926.C6BB917FB5@smallone.fc.hp.com>
Date: Wed,  4 Jul 2001 15:59:26 -0600 (MDT)
Delivered-To: maintonly@bugs.debian.org

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 bunk@fs.tum.de Wed Aug 22 14:08:15 2001
Return-path: <bunk@fs.tum.de>
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 <bunk@fs.tum.de>
X-X-Sender:  <bunk@mimas.fachschaften.tu-muenchen.de>
To:  <51601-done@bugs.debian.org>,  <51738-done@bugs.debian.org>, 
     <51767-done@bugs.debian.org>,  <52610-done@bugs.debian.org>, 
     <56777-done@bugs.debian.org>,  <83516-done@bugs.debian.org>, 
     <67960-done@bugs.debian.org>,  <84921-done@bugs.debian.org>, 
     <86267-done@bugs.debian.org>,  <88776-done@bugs.debian.org>, 
     <93871-done@bugs.debian.org>,  <103550-done@bugs.debian.org>, 
     <107831-done@bugs.debian.org>,  <93870-done@bugs.debian.org>, 
     <104793-done@bugs.debian.org>,  <15792-done@bugs.debian.org>, 
     <21690-done@bugs.debian.org>,  <24890-done@bugs.debian.org>, 
     <26683-done@bugs.debian.org>,  <29471-done@bugs.debian.org>, 
     <32819-done@bugs.debian.org>,  <48971-done@bugs.debian.org>, 
     <56835-done@bugs.debian.org>,  <64367-done@bugs.debian.org>, 
     <91065-done@bugs.debian.org>,  <91179-done@bugs.debian.org>, 
     <91491-done@bugs.debian.org>,  <91654-done@bugs.debian.org>, 
     <94463-done@bugs.debian.org>,  <95532-done@bugs.debian.org>, 
     <94893-done@bugs.debian.org>,  <103340-done@bugs.debian.org>
Subject: These bugs can be closed
Message-ID: <Pine.NEB.4.33.0108222059480.21540-100000@mimas.fachschaften.tu-muenchen.de>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Delivered-To: 103550-done@bugs.debian.org


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 bunk@debian.org | gpg --import

Fingerprint: B29C E71E FE19 6755 5C8A  84D4 99FC EA98 4F12 B400



Reply to: