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

Bug#259618: marked as forwarded (ppxp: FTBFS with gcc-3.4: label at end of compound statement)



Your message dated Mon, 19 Jul 2004 13:22:33 +0200
with message-id <20040719112233.GA3712@darkmoon.home>
has caused the Debian Bug report #259618,
regarding ppxp: FTBFS with gcc-3.4: label at end of compound statement
to be marked as having been forwarded to the upstream software
author(s) manabe@amitaj.or.jp.

(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 259618-forwarded) by bugs.debian.org; 19 Jul 2004 11:23:20 +0000
>From ema@debian.org Mon Jul 19 04:23:20 2004
Return-path: <ema@debian.org>
Received: from smtp2.libero.it [193.70.192.52] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1BmWEq-0004eP-00; Mon, 19 Jul 2004 04:23:20 -0700
Received: from localhost (172.16.1.84) by smtp2.libero.it (7.0.027-DD01)
        id 40C7347600927B23; Mon, 19 Jul 2004 13:22:56 +0200
Received: from localhost (151.38.231.53) by smtp1.libero.it (7.0.027-DD01)
        id 40CB29090203D9F0; Mon, 19 Jul 2004 13:22:46 +0200
Received: by localhost (Postfix, from userid 1000)
	id F20BFECBA2; Mon, 19 Jul 2004 13:22:33 +0200 (CEST)
Date: Mon, 19 Jul 2004 13:22:33 +0200
From: Emanuele Rocca <ema@debian.org>
To: manabe@amitaj.or.jp
Cc: Andreas Jochens <aj@andaco.de>, 259618-forwarded@bugs.debian.org
Subject: [fwd: Bug#259618: ppxp: FTBFS with gcc-3.4: label at end of compound statement]
Message-ID: <20040719112233.GA3712@darkmoon.home>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040523i
X-Virus-Scanned: by amavisd-new at libero.it
Delivered-To: 259618-forwarded@bugs.debian.org
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 ppxp 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.

(ppxp doesn't have a Debian maintainer right now; I'm just filling in
as part of general QA work.)

Thanks,
	Emanuele Rocca

----- Forwarded message from Andreas Jochens <aj@andaco.de> -----

From: Andreas Jochens <aj@andaco.de>
Date: Thu, 15 Jul 2004 21:05:03 +0200
Subject: Bug#259618: ppxp: FTBFS with gcc-3.4: label at end of compound statement
Reply-To: Andreas Jochens <aj@andaco.de>, 259618@bugs.debian.org
To: Debian Bug Tracking System <submit@bugs.debian.org>
Message-Id: <[🔎] E1BlBXT-0005ka-J2@localhost>

Package: ppxp
Severity: normal
Tags: patch

When building 'ppxp' with gcc-3.4 I get the following error:

make[3]: Entering directory `/ppxp-0.2001080415/src/dev'
gcc -O2 -g -W -I../../lib -I.. -I../../OS/Linux   -c -o device.o device.c
gcc -O2 -g -W -I../../lib -I.. -I../../OS/Linux   -c -o pty.o pty.c
gcc -O2 -g -W -I../../lib -I.. -I../../OS/Linux   -c -o serial.o serial.c
serial.c: In function `SioOpen':
serial.c:360: error: label at end of compound statement
serial.c:371: error: label at end of compound statement
serial.c: In function `SioSetup':
serial.c:464: warning: missing initializer
serial.c:464: warning: (near initialization for `sioenv[7].d')
make[3]: *** [serial.o] Error 1
make[3]: Leaving directory `/ppxp-0.2001080415/src/dev'
make[2]: *** [subdirs] Error 2
make[2]: Leaving directory `/ppxp-0.2001080415/src'
make[1]: *** [subdirs] Error 2
make[1]: Leaving directory `/ppxp-0.2001080415'
make: *** [build-stamp] Error 2

With the attached patch 'ppxp' can be compiled using gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/ppxp-0.2001080415/src/chat.c ./src/chat.c
--- ../tmp-orig/ppxp-0.2001080415/src/chat.c	2000-12-04 13:23:14.000000000 +0100
+++ ./src/chat.c	2004-07-15 20:59:43.993324819 +0200
@@ -261,7 +261,6 @@
 	    return(csp->a_cmd);
 	}
 	break;
-    default:
     }
     return(CHAT_NEXT);
 }
diff -urN ../tmp-orig/ppxp-0.2001080415/src/dev/serial.c ./src/dev/serial.c
--- ../tmp-orig/ppxp-0.2001080415/src/dev/serial.c	2000-12-04 13:23:22.000000000 +0100
+++ ./src/dev/serial.c	2004-07-15 20:59:17.575402635 +0200
@@ -356,7 +356,6 @@
     case PARITY_EVEN:
 	newtio.c_cflag |= (CS7|PARENB);
 	break;
-    default:
     }
     switch (sioOpt.flow) {
     case FLOW_CRTSCTS:
@@ -367,7 +366,6 @@
 	newtio.c_cc[VSTART] = 0x11;
 	newtio.c_cc[VSTOP] = 0x13;
 	break;
-    default:
     }
     pppInfo.minfo = 0;
 #if 0
diff -urN ../tmp-orig/ppxp-0.2001080415/src/lcp.c ./src/lcp.c
--- ../tmp-orig/ppxp-0.2001080415/src/lcp.c	2004-07-15 21:00:17.892808774 +0200
+++ ./src/lcp.c	2004-07-15 21:00:02.594749342 +0200
@@ -847,7 +847,6 @@
     case RUN_ACTIVE:
 	lcpFsm.opt_p = 0;
 	break;
-    default:
     }
     FsmOpen(&lcpFsm);
     /*    pppInfo.p[PINFO_LCP].st = PIST_RUN;*/


-- 
To UNSUBSCRIBE, email to debian-qa-packages-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org

----- End forwarded message -----



Reply to: