Your message dated Mon, 07 May 2007 18:47:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#421216: fixed in hedgewars 0.9.0-7
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)

--- Begin Message ---
Package: hedgewars
Version: 0.9.0-6
Usertags: ftbfs-gcc-4.3
Tags: patch

Your package fails to build with GCC 4.3.  Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning.  In GCC 4.3, the C++ header
dependencies have been cleaned up.  The advantage of this is that
programs will compile faster.  The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC).  Some background of this can be found at
http://gcc.gnu.org/PR28080

You can reproduce this problem with gcc-snapshot (20070422-1 or higher)
from unstable. (Currently not available for i386, but for amd64, powerpc
and ia64.  I hope to have i386 binaries in the archive in the near
future.)

> Automatic build of hedgewars_0.9.0-6 on em64t by sbuild/amd64 0.53
...
> [ 38%] Building CXX object QTfrontend/CMakeFiles/hedgewars.dir/teamselect.o
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'void TeamSelWidget::hhNumChanged(const HWTeam&)':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:61: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> const HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'void TeamSelWidget::proxyTeamColorChanged(const HWTeam&)':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:68: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> const HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'void TeamSelWidget::changeHHNum(const HWTeam&)':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:75: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> const HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'void TeamSelWidget::changeTeamColor(const HWTeam&)':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:84: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> const HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'void TeamSelWidget::removeNetTeam(const HWTeam&)':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:94: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> const HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'void TeamSelWidget::netTeamStatusChanged(const HWTeam&)':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:108: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> const HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'void TeamSelWidget::changeTeamStatus(HWTeam)':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:119: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:120: error: no matching 
> function for call to 'find(QList<HWTeam>::iterator, QList<HWTeam>::iterator, 
> HWTeam&)'
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp: In member function 
> 'bool TeamSelWidget::isPlaying(HWTeam) const':
> /build/tbm/hedgewars-0.9.0/QTfrontend/teamselect.cpp:230: error: no matching 
> function for call to 'find(QList<HWTeam>::const_iterator, 
> QList<HWTeam>::const_iterator, HWTeam&)'
> make[3]: *** [QTfrontend/CMakeFiles/hedgewars.dir/teamselect.o] Error 1
> make[3]: Leaving directory `/build/tbm/hedgewars-0.9.0'
> make[2]: *** [QTfrontend/CMakeFiles/hedgewars.dir/all] Error 2
> make[2]: Leaving directory `/build/tbm/hedgewars-0.9.0'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/build/tbm/hedgewars-0.9.0'
> make: *** [build-stamp] Error 2

--- QTfrontend/teamselect.cpp~  2007-04-27 08:15:11.000000000 +0000
+++ QTfrontend/teamselect.cpp   2007-04-27 08:15:48.000000000 +0000
@@ -16,6 +16,8 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#include <algorithm>
+
 #include <QLabel>
 #include <QPixmap>
 #include <QPushButton>
--- QTfrontend/teamselhelper.cpp~       2007-04-27 08:16:02.000000000 +0000
+++ QTfrontend/teamselhelper.cpp        2007-04-27 08:16:08.000000000 +0000
@@ -16,6 +16,8 @@
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  */
 
+#include <algorithm>
+
 #include "teamselhelper.h"
 #include "hwconsts.h"
 

-- 
Martin Michlmayr
http://www.cyrius.com/


--- End Message ---
--- Begin Message ---
Source: hedgewars
Source-Version: 0.9.0-7

We believe that the bug you reported is fixed in the latest version of
hedgewars, which is due to be installed in the Debian FTP archive:

hedgewars-data_0.9.0-7_all.deb
  to pool/main/h/hedgewars/hedgewars-data_0.9.0-7_all.deb
hedgewars_0.9.0-7.diff.gz
  to pool/main/h/hedgewars/hedgewars_0.9.0-7.diff.gz
hedgewars_0.9.0-7.dsc
  to pool/main/h/hedgewars/hedgewars_0.9.0-7.dsc
hedgewars_0.9.0-7_i386.deb
  to pool/main/h/hedgewars/hedgewars_0.9.0-7_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dmitry E. Oboukhov <[EMAIL PROTECTED]> (supplier of updated hedgewars package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 27 Apr 2007 22:50:36 +0400
Source: hedgewars
Binary: hedgewars-data hedgewars
Architecture: source i386 all
Version: 0.9.0-7
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov <[EMAIL PROTECTED]>
Changed-By: Dmitry E. Oboukhov <[EMAIL PROTECTED]>
Description: 
 hedgewars  - Worms style game
 hedgewars-data - Data files for hedgewars
Closes: 421216
Changes: 
 hedgewars (0.9.0-7) unstable; urgency=low
 .
   * Apply patch for gcc4.3, thanks Martin Michlmayr <[EMAIL PROTECTED]>
     (closes: #421216).
Files: 
 ad18850b0a24107a4dfbcb305157ea10 741 games extra hedgewars_0.9.0-7.dsc
 a7a8cb06bb72309879c95d124c96085d 8672 games extra hedgewars_0.9.0-7.diff.gz
 459fc81e835eba4256ba6f532471846e 4211264 games extra 
hedgewars-data_0.9.0-7_all.deb
 c18484f26af9718c481594bd63ff5a10 354378 games extra hedgewars_0.9.0-7_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFGP3D7v3x5OskTLdsRAuoiAJ97cEhnFrP5NAEA7Vh+BPKsfGi11wCfQj48
RbHfBP0CZuhkAy6k95bhUgU=
=/1Qc
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to