Your message dated Tue, 29 Jan 2008 20:47:11 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417187: fixed in fillets-ng 0.8.0-2
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: fillets-ng
Version: 0.7.3-3
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 from unstable.
> Automatic build of fillets-ng_0.7.3-3 on coconut0 by sbuild/ia64 0.49
...
> ia64-linux-gnu-g++ -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\"
> -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\"
> -DPACKAGE=\"fillets-ng\" -DVERSION=\"0.7.3\" -DHAVE_X11=1 -I. -I.
> -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/lua50
> -DSYSTEM_DATA_DIR=\""/usr/share/games/fillets-ng"\" -I/usr/local/include -g
> -O2 -Wall -W -Wpointer-arith -Wcast-qual -Wcast-align -Woverloaded-virtual
> -Wconversion -Wshadow -c OptionAgent.cpp
> OptionAgent.cpp: In member function 'void OptionAgent::prepareDataPaths()':
> OptionAgent.cpp:99: error: 'getenv' was not declared in this scope
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^66
> OptionAgent.cpp: In member function 'void OptionAgent::prepareLang()':
> OptionAgent.cpp:122: warning: conversion to 'int' from 'size_t' may alter its
> value
> OptionAgent.cpp:124: warning: conversion to 'long unsigned int' from 'int'
> may alter its value
> /usr/lib/gcc-snapshot/lib/gcc/ia64-linux-gnu/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.h:
> In member function 'std::basic_string<_CharT, _Traits, _Alloc>::_Rep*
> std::basic_string<_CharT, _Traits, _Alloc>::_M_rep() const [with _CharT =
> char, _Traits = std::char_traits<char>, _Alloc = std::allocator<char>]':
> /usr/lib/gcc-snapshot/lib/gcc/ia64-linux-gnu/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.h:496:
> instantiated from 'std::basic_string<_CharT, _Traits,
> _Alloc>::~basic_string() [with _CharT = char, _Traits =
> std::char_traits<char>, _Alloc = std::allocator<char>]'
> ExInfo.h:17: instantiated from here
> /usr/lib/gcc-snapshot/lib/gcc/ia64-linux-gnu/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.h:288:
> warning: cast from 'char*' to 'std::basic_string<char,
> std::char_traits<char>, std::allocator<char> >::_Rep*' increases required
> alignment of target type
> make[3]: *** [OptionAgent.o] Error 1
--- src/gengine/StringTool.cpp~ 2007-04-01 18:57:08.000000000 +0000
+++ src/gengine/StringTool.cpp 2007-04-01 18:57:14.000000000 +0000
@@ -8,6 +8,7 @@
*/
#include "StringTool.h"
+#include <cstdlib>
#include <sstream>
//-----------------------------------------------------------------
--- src/gengine/OptionAgent.cpp~ 2007-04-01 19:01:11.000000000 +0000
+++ src/gengine/OptionAgent.cpp 2007-04-01 18:55:53.000000000 +0000
@@ -23,6 +23,7 @@
#include "UnknownMsgException.h"
#include "minmax.h"
+#include <cstdlib> //getenv
#include <string.h> //strlen
#include <locale.h> //setlocale
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---
--- Begin Message ---
Source: fillets-ng
Source-Version: 0.8.0-2
We believe that the bug you reported is fixed in the latest version of
fillets-ng, which is due to be installed in the Debian FTP archive:
fillets-ng_0.8.0-2.diff.gz
to pool/main/f/fillets-ng/fillets-ng_0.8.0-2.diff.gz
fillets-ng_0.8.0-2.dsc
to pool/main/f/fillets-ng/fillets-ng_0.8.0-2.dsc
fillets-ng_0.8.0-2_i386.deb
to pool/main/f/fillets-ng/fillets-ng_0.8.0-2_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.
Alexander Schmehl <[EMAIL PROTECTED]> (supplier of updated fillets-ng 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: Tue, 29 Jan 2008 21:13:56 +0100
Source: fillets-ng
Binary: fillets-ng
Architecture: source i386
Version: 0.8.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team <[EMAIL PROTECTED]>
Changed-By: Alexander Schmehl <[EMAIL PROTECTED]>
Description:
fillets-ng - puzzle game about witty fish saving the world sokoban-style
Closes: 417187
Changes:
fillets-ng (0.8.0-2) unstable; urgency=low
.
* Adding pkg-config to build-depends, fixing problem of libfribidi not
beeing fround during configuring, thanks to Lucas Nussbaum for detecting
the problem.
* Applying patch from Evgeni Golov to add missing #include statements to
make it really build with gcc-4.3; thanks! (Closes: #417187)
Files:
67d95a83c281b43db75c07450d772551 1055 games optional fillets-ng_0.8.0-2.dsc
5e4d1702c8c27a091ab4183752f8f024 6734 games optional fillets-ng_0.8.0-2.diff.gz
956d2401cc8945ca1f25ddcf02d28c4e 292914 games optional
fillets-ng_0.8.0-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHn42SBxd04ADYzRYRAkuQAKCGXEdQzxISNgvZ3dliiKq4xH+QlgCfTi34
ELTFbLodo0h7jvhlBuCUj9w=
=QwSl
-----END PGP SIGNATURE-----
--- End Message ---