Your message dated Sat, 10 Jul 2004 13:20:30 +0100 with message-id <[EMAIL PROTECTED]> has caused the Debian Bug report #258467, regarding avview: FTBFS with gcc-3.4: label at end of compound statement to be marked as having been forwarded to the upstream software author(s) Vladimir Dergachev <[EMAIL PROTECTED]>.
(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 258467-forwarded) by bugs.debian.org; 10 Jul 2004 12:20:34 +0000 >From [EMAIL PROTECTED] Sat Jul 10 05:20:34 2004 Return-path: <[EMAIL PROTECTED]> Received: from chiark.greenend.org.uk [193.201.200.170] (mail) by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1BjGqI-000836-00; Sat, 10 Jul 2004 05:20:34 -0700 Received: from [192.168.124.112] (helo=riva.lab.dotat.at) by chiark.greenend.org.uk (Debian Exim 3.35 #1) with esmtp id 1BjGqF-0003AW-00; Sat, 10 Jul 2004 13:20:31 +0100 Received: from cjwatson by riva.lab.dotat.at with local (Exim 3.35 #1 (Debian)) id 1BjGqE-00052z-00; Sat, 10 Jul 2004 13:20:30 +0100 Date: Sat, 10 Jul 2004 13:20:30 +0100 From: Colin Watson <[EMAIL PROTECTED]> To: Vladimir Dergachev <[EMAIL PROTECTED]> Cc: Andreas Jochens <[EMAIL PROTECTED]>, [EMAIL PROTECTED] Subject: [EMAIL PROTECTED]: Bug#258467: avview: FTBFS with gcc-3.4: label at end of compound statement] Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i 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=-11.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER, HAS_PACKAGE autolearn=ham version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Hi, This bug was filed against avview in the Debian bug tracking system. Perhaps you could apply the included patch in your next release? I'll fix it in Debian for now. (avview doesn't have a Debian maintainer right now; I'm just filling in as part of general QA work.) Thanks, -- Colin Watson [EMAIL PROTECTED] ----- Forwarded message from Andreas Jochens <[EMAIL PROTECTED]> ----- X-Original-To: debian-qa-packages@lists.debian.org Subject: Bug#258467: avview: FTBFS with gcc-3.4: label at end of compound statement Reply-To: Andreas Jochens <[EMAIL PROTECTED]>, [EMAIL PROTECTED] X-Debian-PR-Message: report 258467 X-Debian-PR-Package: avview X-Debian-PR-Keywords: patch To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Date: Fri, 09 Jul 2004 22:11:14 +0200 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 Delivered-To: [EMAIL PROTECTED] X-Rc-Virus: 2004-06-20_01 X-Rc-Spam: 2004-07-05_01 Package: avview Severity: normal Tags: patch When building 'avview' with gcc-3.4 I get the following error: main.c: In function `get_value': main.c:60: warning: implicit declaration of function `strcmp' if gcc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/include/tcl8.4/tcl-private/generic -I/usr/include/tcl8.4/tk-private/generic -Wall -O2 -DAVVIEW_VERSION=\"0.12.0\" -g -O2 -MT avview_shell-vbi.o -MD -MP -MF ".deps/avview_shell-vbi.Tpo" \ -c -o avview_shell-vbi.o `test -f 'vbi.c' || echo './'`vbi.c; \ then mv ".deps/avview_shell-vbi.Tpo" ".deps/avview_shell-vbi.Po"; \ else rm -f ".deps/avview_shell-vbi.Tpo"; exit 1; \ fi vbi.c: In function `vbi_pipe_handler': vbi.c:102: error: label at end of compound statement vbi.c:105: error: label at end of compound statement vbi.c: In function `vbi_loop': vbi.c:116: warning: unused variable `i' vbi.c:117: warning: unused variable `d' vbi.c: In function `vbi_open_device': vbi.c:271: warning: passing arg 3 of `pthread_create' from incompatible pointer type make[2]: *** [avview_shell-vbi.o] Error 1 make[2]: Leaving directory `/avview-0.12.0' make[1]: *** [all] Error 2 make[1]: Leaving directory `/avview-0.12.0' make: *** [build-stamp] Error 2 With the attached patch 'avview' can be compiled using gcc-3.4. Regards Andreas Jochens diff -urN ../tmp-orig/avview-0.12.0/vbi.c ./vbi.c --- ../tmp-orig/avview-0.12.0/vbi.c 2003-05-21 01:01:45.000000000 +0200 +++ ./vbi.c 2004-07-08 20:21:09.990653459 +0200 @@ -98,10 +98,8 @@ Tcl_VarEval(data->interp, data->event_command, " aspect {}", NULL); break; - default: } break; - default: } } -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] ----- End forwarded message -----