Your message dated Sun, 16 Mar 2008 22:32:09 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417510: fixed in rafkill 1.2.2-3.1
has caused the Debian Bug report #417510,
regarding FTBFS with GCC 4.3: missing #includes
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
417510: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=417510
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: rafkill
Version: 1.2.2-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 (20070326-1 or higher)
from unstable.
> Automatic build of rafkill_1.2.2-3 on em64t by sbuild/amd64 0.53
...
> build/gunobj.h:52: warning: type qualifiers ignored on function return type
> build/menu.cpp: In member function 'char* menuClass::getFileInfo(int)':
> build/menu.cpp:613: error: 'malloc' was not declared in this scope
> scons: *** [build/menu.o] Error 1
--- build/guns/gun_findgun.cpp~ 2007-04-02 21:46:07.000000000 +0000
+++ build/guns/gun_findgun.cpp 2007-04-02 21:46:20.000000000 +0000
@@ -5,6 +5,7 @@
#include "weaponobj.h"
#include "hulls/hull_weapon_machine.h"
#include "spaceobj.h"
+#include <cstdlib>
#include <vector>
#include <math.h>
--- build/guns/gun_machine_circle.cpp~ 2007-04-02 21:46:51.000000000 +0000
+++ build/guns/gun_machine_circle.cpp 2007-04-02 21:46:56.000000000 +0000
@@ -3,6 +3,7 @@
#include "weaponobj.h"
#include "hulls/hull_weapon_machine.h"
#include "trigtable.h"
+#include <cstdlib>
// #define d_circle_move (2.9*8)
--- build/guns/gun_saber.cpp~ 2007-04-02 21:47:51.000000000 +0000
+++ build/guns/gun_saber.cpp 2007-04-02 21:47:57.000000000 +0000
@@ -5,6 +5,7 @@
#include "weapons/weapon_beam.h"
#include "spaceobj.h"
#include "ebox.h"
+#include <cstdlib>
#include <vector>
using namespace std;
--- build/menu.cpp~ 2007-04-02 21:43:40.000000000 +0000
+++ build/menu.cpp 2007-04-02 21:43:51.000000000 +0000
@@ -1,4 +1,5 @@
#include <stdio.h>
+#include <cstdlib>
#include "defs.h"
#include "menu.h"
#include "loadsave.h"
--- build/weapons/weapon_follow.cpp~ 2007-04-02 21:44:52.000000000 +0000
+++ build/weapons/weapon_follow.cpp 2007-04-02 21:44:59.000000000 +0000
@@ -3,6 +3,7 @@
#include "weapon_follow.h"
#include "hulls/hull_weapon_follow.h"
#include "spaceobj.h"
+#include <cstdlib>
#include <vector>
using namespace std;
--- build/hulls/hull_weapon_beam.cpp~ 2007-04-02 21:48:40.000000000 +0000
+++ build/hulls/hull_weapon_beam.cpp 2007-04-02 21:48:46.000000000 +0000
@@ -4,6 +4,7 @@
#include "hull_weapon_beam.h"
#include "trigtable.h"
#include "ebox.h"
+#include <cstdlib>
#ifndef debug
#include <iostream>
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---
--- Begin Message ---
Source: rafkill
Source-Version: 1.2.2-3.1
We believe that the bug you reported is fixed in the latest version of
rafkill, which is due to be installed in the Debian FTP archive:
rafkill-data_1.2.2-3.1_all.deb
to pool/main/r/rafkill/rafkill-data_1.2.2-3.1_all.deb
rafkill_1.2.2-3.1.diff.gz
to pool/main/r/rafkill/rafkill_1.2.2-3.1.diff.gz
rafkill_1.2.2-3.1.dsc
to pool/main/r/rafkill/rafkill_1.2.2-3.1.dsc
rafkill_1.2.2-3.1_i386.deb
to pool/main/r/rafkill/rafkill_1.2.2-3.1_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.
Marc 'HE' Brockschmidt <[EMAIL PROTECTED]> (supplier of updated rafkill 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: Sun, 16 Mar 2008 23:16:02 +0100
Source: rafkill
Binary: rafkill rafkill-data
Architecture: source all i386
Version: 1.2.2-3.1
Distribution: unstable
Urgency: low
Maintainer: Debian allegro packages maintainers <[EMAIL PROTECTED]>
Changed-By: Marc 'HE' Brockschmidt <[EMAIL PROTECTED]>
Description:
rafkill - vertical shoot'em-up similar to Raptor: Call of the Shadows
rafkill-data - graphics and audio data for rafkill
Closes: 417510
Changes:
rafkill (1.2.2-3.1) unstable; urgency=low
.
* Non-maintainer upload.
* debian/patches/103_gcc_4.3_fixes:
+ Fix gcc-4.3 FTBFS, patch by tbm. (Closes: #417510)
Files:
923e089b5c2d92e392ae63edab5a23a8 818 games optional rafkill_1.2.2-3.1.dsc
be9e9a4c9c43f1b276a23025e960fd33 133451 games optional
rafkill_1.2.2-3.1.diff.gz
efb9f208ef94b22e831202c9fe2b0429 6039504 games optional
rafkill-data_1.2.2-3.1_all.deb
875eda36ed04e0164466baac10fe9f2b 165118 games optional
rafkill_1.2.2-3.1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFH3Z1kmO5zOp3h7rERAm16AJ4nLPN9QFOEjduVvgdG0qJengtM3wCffs6n
jW0CBxO5lpU3kwd4bj16g5M=
=5RsM
-----END PGP SIGNATURE-----
--- End Message ---