Your message dated Sun, 09 Mar 2008 11:47:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417173: fixed in earth3d 1.0.5-1.1
has caused the Debian Bug report #417173,
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.)
--
417173: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=417173
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: earth3d
Version: 1.0.5-1
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 earth3d_1.0.5-1 on em64t by sbuild/amd64 0.53
...
> g++ -c -pipe -Wall -W -O2 -D_REENTRANT -DLINUX -DFORWARD_VIEW
> -DQT_THREAD_SUPPORT -DUSE_GL_TEXTURE_COMPRESSION -DQT_NO_DEBUG
> -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT
> -I/usr/share/qt3/mkspecs/default -I. -I/usr/include/libxml2/libxml
> -I/usr/include/libxml2 -I../../network/rubyAgents/c -I../../dataserver
> -I/sw/include -I/usr/X11R6/include/ -I/sw/include/libxml2 -Igeometry
> -Inetwork -Idraw -Itree -I. -I/usr/include/qt3 -I/usr/X11R6/include
> -I/usr/X11R6/include -I.ui/ -I.moc/ -o .obj/listViewServiceItem.o
> listViewServiceItem.cpp
> listViewServiceItem.cpp: In constructor
> 'ListViewServiceItem::ListViewServiceItem(QListViewItem*, QListViewItem*,
> QDomNode, const char*, const char*, int, part_t*, ConnectNetworkService*,
> QString)':
> listViewServiceItem.cpp:26: error: 'atoi' was not declared in this scope
--- draw/treeDrawPOI.cpp~ 2007-04-01 18:21:09.000000000 +0000
+++ draw/treeDrawPOI.cpp 2007-04-01 18:21:15.000000000 +0000
@@ -1,5 +1,6 @@
#define GL_GLEXT_PROTOTYPES
#include "treeDrawPOI.h"
+#include <cstdlib>
#include <stdio.h>
#include <GL/glext.h>
#include "treeDrawPOISign.h"
--- draw/treeDrawFactory.cpp~ 2007-04-01 18:22:03.000000000 +0000
+++ draw/treeDrawFactory.cpp 2007-04-01 18:22:10.000000000 +0000
@@ -1,4 +1,5 @@
#include "treeDrawFactory.h"
+#include <cstdlib>
#include <qtextstream.h>
#include <qdom.h>
#include "treeDraw.h"
--- draw/drawSceneObjectTriangle.cpp~ 2007-04-01 18:22:36.000000000 +0000
+++ draw/drawSceneObjectTriangle.cpp 2007-04-01 18:22:42.000000000 +0000
@@ -1,4 +1,5 @@
#include "drawSceneObjectTriangle.h"
+#include <cstdlib>
DrawSceneObjectTriangle::DrawSceneObjectTriangle(DrawScene *scene)
: DrawSceneObject(scene) {
--- draw/drawSceneObjectQuad.cpp~ 2007-04-01 18:24:31.000000000 +0000
+++ draw/drawSceneObjectQuad.cpp 2007-04-01 18:24:36.000000000 +0000
@@ -1,4 +1,5 @@
#include "drawSceneObjectQuad.h"
+#include <cstdlib>
DrawSceneObjectQuad::DrawSceneObjectQuad(DrawScene *scene)
: DrawSceneObject(scene) {
--- draw/drawSceneObjectTranslate.cpp~ 2007-04-01 18:24:53.000000000 +0000
+++ draw/drawSceneObjectTranslate.cpp 2007-04-01 18:24:58.000000000 +0000
@@ -1,4 +1,5 @@
#include "drawSceneObjectTranslate.h"
+#include <cstdlib>
DrawSceneObjectTranslate::DrawSceneObjectTranslate(DrawScene *scene)
: DrawSceneObjectTransform(scene) {
--- draw/drawSceneObjectScale.cpp~ 2007-04-01 18:26:39.000000000 +0000
+++ draw/drawSceneObjectScale.cpp 2007-04-01 18:26:46.000000000 +0000
@@ -1,4 +1,5 @@
#include "drawSceneObjectScale.h"
+#include <cstdlib>
DrawSceneObjectScale::DrawSceneObjectScale(DrawScene *scene)
: DrawSceneObjectTransform(scene) {
--- draw/drawSceneObjectRotatequaternion.cpp~ 2007-04-01 18:28:14.000000000
+0000
+++ draw/drawSceneObjectRotatequaternion.cpp 2007-04-01 18:28:20.000000000
+0000
@@ -1,4 +1,5 @@
#include "drawSceneObjectRotatequaternion.h"
+#include <cstdlib>
DrawSceneObjectRotatequaternion::DrawSceneObjectRotatequaternion(DrawScene
*scene)
: DrawSceneObjectTransform(scene) {
--- geometry/geometry2d3dFactory.cpp~ 2007-04-01 18:29:05.000000000 +0000
+++ geometry/geometry2d3dFactory.cpp 2007-04-01 18:29:14.000000000 +0000
@@ -1,4 +1,5 @@
#include "geometry2d3dFactory.h"
+#include <cstdlib>
Geometry2D3DFactory::Geometry2D3DFactory() {
}
--- network/urlDownload.cpp~ 2007-04-01 18:18:07.000000000 +0000
+++ network/urlDownload.cpp 2007-04-01 18:18:13.000000000 +0000
@@ -1,5 +1,6 @@
#include "urlDownload.h"
#include "urlTools.h"
+#include <cstdlib>
#include <string.h>
#include <iostream>
#include <qnetwork.h>
--- network/urlTools.cpp~ 2007-04-01 18:18:48.000000000 +0000
+++ network/urlTools.cpp 2007-04-01 18:18:55.000000000 +0000
@@ -1,4 +1,5 @@
#include "urlTools.h"
+#include <cstdlib>
#include <qdom.h>
#include <qtextstream.h>
#include <iostream>
--- network/serviceFoundLister.cpp~ 2007-04-01 18:19:48.000000000 +0000
+++ network/serviceFoundLister.cpp 2007-04-01 18:19:53.000000000 +0000
@@ -1,4 +1,5 @@
#include "serviceFoundLister.h"
+#include <cstdlib>
#include <iostream>
#include "listViewServiceItem.h"
#include <qdom.h>
--- listViewServiceItem.cpp~ 2007-04-01 18:17:18.000000000 +0000
+++ listViewServiceItem.cpp 2007-04-01 18:17:46.000000000 +0000
@@ -1,4 +1,5 @@
#include "listViewServiceItem.h"
+#include <cstdlib>
#include <qdom.h>
#include <qpixmap.h>
--- formview.ui.h~ 2007-04-01 18:30:26.000000000 +0000
+++ formview.ui.h 2007-04-01 18:30:32.000000000 +0000
@@ -13,6 +13,7 @@
#include "connectNetworkService.h"
#include "serviceFoundLister.h"
+#include <cstdlib>
#include <vector>
#include <string>
#include <iostream>
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---
--- Begin Message ---
Source: earth3d
Source-Version: 1.0.5-1.1
We believe that the bug you reported is fixed in the latest version of
earth3d, which is due to be installed in the Debian FTP archive:
earth3d_1.0.5-1.1.diff.gz
to pool/main/e/earth3d/earth3d_1.0.5-1.1.diff.gz
earth3d_1.0.5-1.1.dsc
to pool/main/e/earth3d/earth3d_1.0.5-1.1.dsc
earth3d_1.0.5-1.1_i386.deb
to pool/main/e/earth3d/earth3d_1.0.5-1.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.
Luk Claes <[EMAIL PROTECTED]> (supplier of updated earth3d 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, 09 Mar 2008 11:14:10 +0000
Source: earth3d
Binary: earth3d
Architecture: source i386
Version: 1.0.5-1.1
Distribution: unstable
Urgency: medium
Maintainer: Petter Reinholdtsen <[EMAIL PROTECTED]>
Changed-By: Luk Claes <[EMAIL PROTECTED]>
Description:
earth3d - Map client displaying a 3D model of the world
Closes: 417173
Changes:
earth3d (1.0.5-1.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix FTBFS with GCC 4.3 (Closes: #417173).
Files:
cd8192b8c0d9d18576ac55781c6e90ee 755 utils optional earth3d_1.0.5-1.1.dsc
8520e98e92ec300397883e14609997b9 3880 utils optional earth3d_1.0.5-1.1.diff.gz
005e66740bdb15ab36a5a43aa51691be 265372 utils optional
earth3d_1.0.5-1.1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFH08yA5UTeB5t8Mo0RAtlaAJ9kuEafani/JLhOEEE9NpllXvsgSACfX9df
Hv2jRMpBSsgHP8rU/t6TyPA=
=dvQd
-----END PGP SIGNATURE-----
--- End Message ---