Your message dated Wed, 28 Dec 2005 08:25:22 +0100 with message-id <[EMAIL PROTECTED]> and subject line ggz-kde-games: FTBFS 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; 16 Aug 2004 19:18:33 +0000 >From [EMAIL PROTECTED] Mon Aug 16 12:18:33 2004 Return-path: <[EMAIL PROTECTED]> Received: from b099100.adsl.hansenet.de (localhost) [62.109.99.100] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Bwn04-0004vc-00; Mon, 16 Aug 2004 12:18:32 -0700 Received: from aj by localhost with local (Exim 4.34) id 1Bwn0F-0000vL-Rm; Mon, 16 Aug 2004 21:18:43 +0200 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: ggz-kde-games: FTBFS with gcc-3.4: '->' cannot appear in a constant-expression Message-Id: <[EMAIL PROTECTED]> Date: Mon, 16 Aug 2004 21:18:43 +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=-6.5 required=4.0 tests=BAYES_10,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Package: ggz-kde-games Severity: normal Tags: patch When building 'ggz-kde-games' with gcc-3.4 I get the following error: kdots.cpp:171: error: '->' cannot appear in a constant-expression kdots.cpp:177: error: `KDots::proto' cannot appear in a constant-expression kdots.cpp:177: error: '->' cannot appear in a constant-expression kdots.cpp:183: error: `KDots::proto' cannot appear in a constant-expression kdots.cpp:183: error: '->' cannot appear in a constant-expression kdots.cpp:195: error: `KDots::proto' cannot appear in a constant-expression kdots.cpp:195: error: '->' cannot appear in a constant-expression kdots.cpp:211: error: `KDots::proto' cannot appear in a constant-expression kdots.cpp:211: error: '->' cannot appear in a constant-expression kdots.cpp:214: error: `KDots::proto' cannot appear in a constant-expression kdots.cpp:214: error: '->' cannot appear in a constant-expression make[4]: *** [kdots.o] Error 1 make[4]: Leaving directory `/ggz-kde-games-0.0.7/kdots' With the attached patch 'ggz-kde-games' can be compiled using gcc-3.4. Regards Andreas Jochens diff -urN ../tmp-orig/ggz-kde-games-0.0.7/kdots/kdots.cpp ./kdots/kdots.cpp --- ../tmp-orig/ggz-kde-games-0.0.7/kdots/kdots.cpp 2002-09-22 19:17:18.000000000 +0200 +++ ./kdots/kdots.cpp 2004-08-16 20:48:50.289613369 +0200 @@ -148,39 +148,39 @@ switch(op) { - case proto->msgseat: + case KDotsProto::msgseat: proto->getSeat(); if(proto->num == 1) emit signalColor(QColor(0, 0, 250)); else if(proto->num == 0) emit signalColor(QColor(0, 0, 50)); else emit signalColor(QColor(255, 255, 255)); break; - case proto->msgplayers: + case KDotsProto::msgplayers: proto->getPlayers(); if(proto->state != proto->statechoose) proto->state = proto->statewait; break; - case proto->msgoptions: + case KDotsProto::msgoptions: proto->getOptions(); dots->resizeBoard(proto->width - 1, proto->height - 1); dots->refreshBoard(); break; - case proto->reqmove: + case KDotsProto::reqmove: emit signalStatus(i18n("Your turn.")); proto->state = proto->statemove; proto->turn = proto->num; break; - case proto->msgmoveh: + case KDotsProto::msgmoveh: proto->getOppMove(proto->sndmoveh); dots->setBorderValue(proto->movex, proto->movey, QDots::right, proto->turn, 1); dots->repaint(); if(proto->num < 0) proto->turn = !proto->turn; break; - case proto->msgmovev: + case KDotsProto::msgmovev: proto->getOppMove(proto->sndmovev); dots->setBorderValue(proto->movex, proto->movey, QDots::down, proto->turn, 1); dots->repaint(); if(proto->num < 0) proto->turn = !proto->turn; break; - case proto->rspmove: + case KDotsProto::rspmove: if(proto->getMove() != -1) { dots->setBorderValue(proto->m_lastx, proto->m_lasty, proto->m_lastdir, proto->turn, 1); @@ -192,7 +192,7 @@ emit signalStatus(i18n("Invalid move, please try again!")); } break; - case proto->msggameover: + case KDotsProto::msggameover: status = proto->getStatus(); if(status == -1) exit(-1); proto->state = proto->statechoose; @@ -208,10 +208,10 @@ exit(-1); } break; - case proto->sndsync: + case KDotsProto::sndsync: gamesync(); break; - case proto->reqoptions: + case KDotsProto::reqoptions: slotOptions(); break; default: diff -urN ../tmp-orig/ggz-kde-games-0.0.7/ktictactux/ktictactux.cpp ./ktictactux/ktictactux.cpp --- ../tmp-orig/ggz-kde-games-0.0.7/ktictactux/ktictactux.cpp 2003-03-29 22:35:08.000000000 +0100 +++ ./ktictactux/ktictactux.cpp 2004-08-16 20:53:04.902906265 +0200 @@ -383,33 +383,33 @@ switch(op) { - case proto->msgseat: + case KTicTacTuxProto::msgseat: proto->getSeat(); break; - case proto->msgplayers: + case KTicTacTuxProto::msgplayers: proto->getPlayers(); proto->state = proto->statewait; if((proto->num >= 0) && (proto->names[!proto->num][0])) emit signalScore(i18n("Network game with %1").arg(proto->names[!proto->num])); break; - case proto->reqmove: + case KTicTacTuxProto::reqmove: proto->state = proto->statemove; m_turn = proto->num; emit signalStatus(i18n("Your move")); break; - case proto->rspmove: + case KTicTacTuxProto::rspmove: switch(proto->getMoveStatus()) { - case proto->errstate: + case KTicTacTuxProto::errstate: emit signalStatus(i18n("*server*")); break; - case proto->errturn: + case KTicTacTuxProto::errturn: emit signalStatus(i18n("*turn*")); break; - case proto->errbound: + case KTicTacTuxProto::errbound: emit signalStatus(i18n("*bounds*")); break; - case proto->errfull: + case KTicTacTuxProto::errfull: emit signalStatus(i18n("*occupied*")); break; default: @@ -417,18 +417,18 @@ } getNextTurn(); break; - case proto->msgmove: + case KTicTacTuxProto::msgmove: proto->getOpponentMove(); if(proto->num < 0) emit signalStatus(i18n("Watching the game")); break; - case proto->sndsync: + case KTicTacTuxProto::sndsync: proto->getSync(); break; - case proto->sndstats: + case KTicTacTuxProto::sndstats: proto->getStatistics(); emit signalNetworkScore(proto->stats[0], proto->stats[1]); break; - case proto->msggameover: + case KTicTacTuxProto::msggameover: proto->getGameOver(); proto->state = proto->statedone; gameOver(); @@ -444,10 +444,10 @@ { switch(proto->board[i % 3][i / 3]) { - case proto->player: + case KTicTacTuxProto::player: frame[i % 3][i / 3]->setPaletteBackgroundPixmap(QPixmap(m_t1)); break; - case proto->opponent: + case KTicTacTuxProto::opponent: frame[i % 3][i / 3]->setPaletteBackgroundPixmap(QPixmap(m_t2)); break; default: --------------------------------------- Received: (at 266120-done) by bugs.debian.org; 28 Dec 2005 07:25:31 +0000 >From [EMAIL PROTECTED] Tue Dec 27 23:25:31 2005 Return-path: <[EMAIL PROTECTED]> Received: from e176043018.adsl.alicedsl.de ([85.176.43.18] helo=kat.ainf.net) by spohr.debian.org with esmtp (Exim 4.50) id 1ErVgg-0001zs-R5 for [EMAIL PROTECTED]; Tue, 27 Dec 2005 23:25:31 -0800 Received: from aj by kat.ainf.net with local (Exim 4.54) id 1ErVgY-0007hB-0l; Wed, 28 Dec 2005 08:25:22 +0100 To: [EMAIL PROTECTED] From: Andreas Jochens <[EMAIL PROTECTED]> Subject: ggz-kde-games: FTBFS Message-Id: <[EMAIL PROTECTED]> Date: Wed, 28 Dec 2005 08:25:22 +0100 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 X-CrossAssassin-Score: 19 The package has been removed from unstable. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]