Your message dated Thu, 7 Jul 2005 09:12:52 +0200
with message-id <[EMAIL PROTECTED]>
and subject line removed
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; 5 Apr 2005 22:09:46 +0000
>From [EMAIL PROTECTED] Tue Apr 05 15:09:46 2005
Return-path: <[EMAIL PROTECTED]>
Received: from d007051.adsl.hansenet.de (localhost.localdomain) [80.171.7.51]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DIwF0-0005EK-00; Tue, 05 Apr 2005 15:09:46 -0700
Received: from aj by localhost.localdomain with local (Exim 4.50)
id 1DIwF2-0006PG-VB; Wed, 06 Apr 2005 00:09:48 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: nemesi: FTBFS (amd64/gcc-4.0): invalid lvalue in increment
Message-Id: <[EMAIL PROTECTED]>
Date: Wed, 06 Apr 2005 00:09:48 +0200
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: nemesi
Version: 0.5.0-1
Severity: normal
Tags: patch
When building 'nemesi' on amd64/unstable with gcc-4.0,
I get the following error:
Making all in rtcp
build_rtcp_sdes.c: In function 'build_rtcp_sdes':
build_rtcp_sdes.c:72: error: invalid lvalue in increment
build_rtcp_sdes.c:93: error: invalid lvalue in increment
build_rtcp_sdes.c:109: error: invalid lvalue in increment
make[3]: *** [build_rtcp_sdes.lo] Error 1
The attached patch fixes these gcc-4.0 related error messages.
There is also a '-fPIC' missing somewhere in decoder/gsm_amr_float
which causes the package to FTBFS on amd64.
Regards
Andreas Jochens
diff -urN ../tmp-orig/nemesi-0.5.0/rtcp/build_rtcp_sdes.c
./rtcp/build_rtcp_sdes.c
--- ../tmp-orig/nemesi-0.5.0/rtcp/build_rtcp_sdes.c 2005-01-25
17:32:14.000000000 +0100
+++ ./rtcp/build_rtcp_sdes.c 2005-04-05 23:54:31.483385985 +0200
@@ -68,8 +68,8 @@
/* No space left in UDP pkt */
pad = 4 - len % 4;
len += pad/4;
- while (pad--)
- *(((char *)item)++)=0;
+ while (pad--) {
+ *((char*)item)=0; item = (char *)item + 1; }
pkt->common.len=htons(len);
return len;
}
@@ -89,8 +89,8 @@
/* No space left in UDP pkt */
pad = 4 - len % 4;
len += pad/4;
- while (pad--)
- *(((char *)item)++)=0;
+ while (pad--) {
+ *((char*)item)=0; item = (char *)item + 1; }
pkt->common.len=htons(len);
return len;
}
@@ -105,8 +105,8 @@
pad = 4 - len % 4;
len += pad/4;
- while (pad--)
- *(((char *)item)++)=0;
+ while (pad--) {
+ *((char*)item)=0; item = (char *)item + 1; }
pkt->common.len=htons(len);
return len;
diff -urN ../tmp-orig/nemesi-0.5.0/decoder/gsm_amr_float/gsm-amr-float.c
./decoder/gsm_amr_float/gsm-amr-float.c
--- ../tmp-orig/nemesi-0.5.0/decoder/gsm_amr_float/gsm-amr-float.c
2005-01-24 18:19:59.000000000 +0100
+++ ./decoder/gsm_amr_float/gsm-amr-float.c 2005-04-05 23:55:34.081649132
+0200
@@ -90,7 +90,7 @@
enum Mode dec_mode;
req_len = L_FRAME * sizeof(uint16) * ELEVEN + L_FRAME * sizeof(uint16)
/ 40;
- outbuff=(uint8 *)p=funcs->get_buff(req_len);
+ p=funcs->get_buff(req_len); outbuff=(uint8 *)p;
/* init decoder */
if (!destate)
diff -urN ../tmp-orig/nemesi-0.5.0/debian/control ./debian/control
--- ../tmp-orig/nemesi-0.5.0/debian/control 2005-04-05 23:58:45.579744223
+0200
+++ ./debian/control 2005-04-05 23:37:22.211369202 +0200
@@ -2,7 +2,7 @@
Section: net
Priority: optional
Maintainer: OMSP Team <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0.0), automake1.8, autoconf, libtool,
libsdl1.2-dev, libgtk2.0-dev
+Build-Depends: debhelper (>= 4.0.0), automake1.8, autoconf, libtool,
libltdl3-dev, libsdl1.2-dev, libgtk2.0-dev
Standards-Version: 3.6.1
Package: nemesi
---------------------------------------
Received: (at 303303-done) by bugs.debian.org; 7 Jul 2005 07:12:42 +0000
>From [EMAIL PROTECTED] Thu Jul 07 00:12:42 2005
Return-path: <[EMAIL PROTECTED]>
Received: from sorrow.cyrius.com [65.19.161.204]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DqQYs-00066D-00; Thu, 07 Jul 2005 00:12:42 -0700
Received: by sorrow.cyrius.com (Postfix, from userid 10)
id A0E7A64D55; Thu, 7 Jul 2005 07:12:37 +0000 (UTC)
Received: by deprecation.cyrius.com (Postfix, from userid 1000)
id 97D237F80; Thu, 7 Jul 2005 09:12:52 +0200 (CEST)
Date: Thu, 7 Jul 2005 09:12:52 +0200
From: Martin Michlmayr <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: removed
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
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=-2.0 required=4.0 tests=BAYES_00,ONEWORD autolearn=no
version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
X-CrossAssassin-Score: 3
This package has been removed from Debian.
--
Martin Michlmayr
http://www.cyrius.com/
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]