Your message dated Sun, 28 Aug 2005 10:10:08 +0200 with message-id <[EMAIL PROTECTED]> and subject line Bug fixed by maintainer, accidently tagged as NMU 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; 30 Dec 2004 20:13:10 +0000 >From [EMAIL PROTECTED] Thu Dec 30 12:13:10 2004 Return-path: <[EMAIL PROTECTED]> Received: from d020125.adsl.hansenet.de (localhost.localdomain) [80.171.20.125] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Ck6fW-0004Lh-00; Thu, 30 Dec 2004 12:13:10 -0800 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1Ck6ko-0000pB-OG; Thu, 30 Dec 2004 21:18:38 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: pan: FTBFS (amd64/gcc-4.0): invalid lvalue in increment Message-Id: <[EMAIL PROTECTED]> Date: Thu, 30 Dec 2004 21:18:38 +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: pan Severity: normal Tags: patch When building 'pan' on amd64 with gcc-4.0, I get the following error: gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I/usr/include/pan -DGNOMELOCALEDIR=\""/usr/share/locale"\" -DXTHREADS -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -g -O2 -I. -c msort.c msort.c: In function 'msort_with_tmp': msort.c:68: error: invalid lvalue in increment msort.c:69: error: invalid lvalue in increment msort.c:74: error: invalid lvalue in increment msort.c:75: error: invalid lvalue in increment make[4]: *** [msort.o] Error 1 make[4]: Leaving directory `/pan-0.14.2.91/pan/base' With the attached patch 'pan' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/pan-0.14.2.91/pan/base/msort.c ./pan/base/msort.c --- ../tmp-orig/pan-0.14.2.91/pan/base/msort.c 2001-06-18 20:33:38.000000000 +0200 +++ ./pan/base/msort.c 2004-12-30 20:59:17.325438912 +0100 @@ -65,14 +65,18 @@ if ((*cmp) (b1, b2) <= 0) { --n1; - *((unsigned long int *) tmp)++ = - *((unsigned long int *) b1)++; + *((unsigned long int *) tmp) = + *((unsigned long int *) b1); + tmp = ((unsigned long int *) tmp) + 1; + b1 = ((unsigned long int *) b1) + 1; } else { --n2; - *((unsigned long int *) tmp)++ = - *((unsigned long int *) b2)++; + *((unsigned long int *) tmp) = + *((unsigned long int *) b2); + tmp = ((unsigned long int *) tmp) + 1; + b2 = ((unsigned long int *) b2) + 1; } } else --------------------------------------- Received: (at 287902-done) by bugs.debian.org; 28 Aug 2005 08:10:10 +0000 >From [EMAIL PROTECTED] Sun Aug 28 01:10:10 2005 Return-path: <[EMAIL PROTECTED]> Received: from freesbee.wheel.dk [193.162.159.97] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1E9IF0-0001GK-00; Sun, 28 Aug 2005 01:10:10 -0700 Received: by freesbee.wheel.dk (Postfix, from userid 1051) id D1463228AA; Sun, 28 Aug 2005 10:10:08 +0200 (CEST) Date: Sun, 28 Aug 2005 10:10:08 +0200 From: =?iso-8859-1?Q?S=F8ren?= Boll Overgaard <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Bug fixed by maintainer, accidently tagged as NMU Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline X-Editor: VIM - Vi IMproved 6.0 X-PGP-Public-Key: http://soren.overgaard.org/cgi-bin/index?t=pgp X-gnyf: flaf User-Agent: Mutt/1.5.9i Content-Transfer-Encoding: quoted-printable 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=-3.0 required=4.0 tests=BAYES_00 autolearn=no version=2.60-bugs.debian.org_2005_01_02 --=20 S=F8ren O. ,''`. : :' : GPG key id: 0x1EB2DE66 `. `' GPG signed mail preferred. `- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]