Your message dated Sat, 03 Sep 2005 01:17:06 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#286822: fixed in gnat-gdb 5.3.gnat.0.0.20030225-9
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; 22 Dec 2004 13:25:53 +0000
>From [EMAIL PROTECTED] Wed Dec 22 05:25:53 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c214166.adsl.hansenet.de (localhost.localdomain) 
[213.39.214.166] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Ch6Uy-0008GZ-00; Wed, 22 Dec 2004 05:25:52 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
        id 1Ch6Zb-0003ER-DS; Wed, 22 Dec 2004 14:30:39 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: gnat-gdb: FTBFS (amd64/gcc-4.0): invalid lvalue in increment
Message-Id: <[EMAIL PROTECTED]>
Date: Wed, 22 Dec 2004 14:30:39 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (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_2004_03_25
X-Spam-Level: 

Package: gnat-gdb
Severity: normal
Tags: patch

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

gcc -c -g -O2    -I. -I../../../gdb -I../../../gdb/config 
-DLOCALEDIR="\"/usr/share/locale\"" -DHAVE_CONFIG_H 
-I../../../gdb/../include/opcode -I../../../gdb/../readline/.. -I../bfd 
-I../../../gdb/../bfd  -I../../../gdb/../include -I../intl 
-I../../../gdb/../intl -D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_LARGEFILE64_SOURCE  
-DMI_OUT=1 -DUI_OUT=1 -Wimplicit -Wreturn-type -Wcomment -Wtrigraphs -Wformat 
-Wparentheses -Wpointer-arith -Wuninitialized  ../../../gdb/gdbtypes.c
../../../gdb/gdbtypes.c: In function 'recursive_dump_type':
../../../gdb/gdbtypes.c:2970: error: invalid lvalue in increment
make[2]: *** [gdbtypes.o] Error 1
make[2]: Leaving directory `/gnat-gdb-5.3.gnat.0.0.20030225/debian/build/gdb'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/gnat-gdb-5.3.gnat.0.0.20030225/gdb/ada-lang.h 
./gdb/ada-lang.h
--- ../tmp-orig/gnat-gdb-5.3.gnat.0.0.20030225/gdb/ada-lang.h   2003-01-27 
12:44:39.000000000 +0100
+++ ./gdb/ada-lang.h    2004-12-22 14:21:19.298822632 +0100
@@ -72,9 +72,6 @@
 /* Defined in ada-lang.c */
 extern const struct ada_opname_map ada_opname_table[];
 
-/* The maximum number of tasks known to the Ada runtime */
-extern const int MAX_NUMBER_OF_KNOWN_TASKS;
-
 /* Identifiers for Ada attributes that need special processing.  Be sure 
    to update the table attribute_names in ada-lang.c whenever you change this.
    */
diff -urN ../tmp-orig/gnat-gdb-5.3.gnat.0.0.20030225/include/obstack.h 
./include/obstack.h
--- ../tmp-orig/gnat-gdb-5.3.gnat.0.0.20030225/include/obstack.h        
2003-01-16 10:50:27.000000000 +0100
+++ ./include/obstack.h 2004-12-22 13:49:50.342987568 +0100
@@ -423,7 +423,8 @@
 ({ struct obstack *__o = (OBSTACK);                                    \
    if (__o->next_free + sizeof (void *) > __o->chunk_limit)            \
      _obstack_newchunk (__o, sizeof (void *));                         \
-   *((void **)__o->next_free)++ = ((void *)datum);                     \
+   *((void **)__o->next_free) = ((void *)datum);                       \
+   __o->next_free = ((void **)__o->next_free) + 1;                     \
    (void) 0; })
 
 # define obstack_int_grow(OBSTACK,datum)                               \
@@ -431,7 +432,8 @@
 ({ struct obstack *__o = (OBSTACK);                                    \
    if (__o->next_free + sizeof (int) > __o->chunk_limit)               \
      _obstack_newchunk (__o, sizeof (int));                            \
-   *((int *)__o->next_free)++ = ((int)datum);                          \
+   *((int *)__o->next_free) = ((int)datum);                            \
+   __o->next_free = ((int *)__o->next_free) + 1;                       \
    (void) 0; })
 
 # define obstack_ptr_grow_fast(h,aptr) (*((void **) (h)->next_free)++ = (void 
*)aptr)

---------------------------------------
Received: (at 286822-close) by bugs.debian.org; 3 Sep 2005 08:19:14 +0000
>From [EMAIL PROTECTED] Sat Sep 03 01:19:14 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EBTD0-0002wz-00; Sat, 03 Sep 2005 01:17:06 -0700
From: Ludovic Brenta <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#286822: fixed in gnat-gdb 5.3.gnat.0.0.20030225-9
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 03 Sep 2005 01:17:06 -0700
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=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: gnat-gdb
Source-Version: 5.3.gnat.0.0.20030225-9

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

gnat-gdb-doc_5.3.gnat.0.0.20030225-9_all.deb
  to pool/main/g/gnat-gdb/gnat-gdb-doc_5.3.gnat.0.0.20030225-9_all.deb
gnat-gdb_5.3.gnat.0.0.20030225-9.diff.gz
  to pool/main/g/gnat-gdb/gnat-gdb_5.3.gnat.0.0.20030225-9.diff.gz
gnat-gdb_5.3.gnat.0.0.20030225-9.dsc
  to pool/main/g/gnat-gdb/gnat-gdb_5.3.gnat.0.0.20030225-9.dsc
gnat-gdb_5.3.gnat.0.0.20030225-9_i386.deb
  to pool/main/g/gnat-gdb/gnat-gdb_5.3.gnat.0.0.20030225-9_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.
Ludovic Brenta <[EMAIL PROTECTED]> (supplier of updated gnat-gdb 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: Fri, 26 Aug 2005 20:21:38 +0200
Source: gnat-gdb
Binary: gnat-gdb gnat-gdb-doc
Architecture: source i386 all
Version: 5.3.gnat.0.0.20030225-9
Distribution: unstable
Urgency: low
Maintainer: Ludovic Brenta <[EMAIL PROTECTED]>
Changed-By: Ludovic Brenta <[EMAIL PROTECTED]>
Description: 
 gnat-gdb   - Ada-aware version of GDB
 gnat-gdb-doc - Documentation for the Ada-aware version of GDB
Closes: 286822
Changes: 
 gnat-gdb (5.3.gnat.0.0.20030225-9) unstable; urgency=low
 .
   * Change maintainer's email address.
   * debian/286822.patch: new.  Apply patch from Andreas Jochen to build on
     amd64.  Closes: #286822.
Files: 
 c304e9cb0c3915b79e64a068935f56fd 719 devel optional 
gnat-gdb_5.3.gnat.0.0.20030225-9.dsc
 6a7ff0ee6bea4583e0728855444a6a5b 12284 devel optional 
gnat-gdb_5.3.gnat.0.0.20030225-9.diff.gz
 a5542fd352117530846069d3572798b2 1070070 devel optional 
gnat-gdb_5.3.gnat.0.0.20030225-9_i386.deb
 15a65cb216d455201195bc1a1444af9b 849200 doc optional 
gnat-gdb-doc_5.3.gnat.0.0.20030225-9_all.deb

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

iD8DBQFDGVniStlRaw+TLJwRAppNAJ9ZZ3mnWIE/wU3V6a++Tj1ghkdmIQCfb77W
krq4ZiHRqnMHm0jPlMaJNiY=
=17it
-----END PGP SIGNATURE-----


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

Reply via email to