Your message dated Fri, 29 Jun 2007 15:32:02 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417110: fixed in atlas-cpp 0.6.0-3
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: atlas-cpp
Version: 0.5.98-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 atlas-cpp_0.5.98-3 on coconut0 by sbuild/ia64 0.49
...
>  ia64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -g -O2 -Wall 
> -Werror -DNDEBUG -MT XML.lo -MD -MP -MF .deps/XML.Tpo -c XML.cpp  -fPIC -DPIC 
> -o .libs/XML.o
> XML.cpp: In member function 'void Atlas::Codecs::XML::parseEndTag()':
> XML.cpp:270: error: 'atol' was not declared in this scope
> XML.cpp:274: error: 'atol' was not declared in this scope
> XML.cpp:290: error: 'atof' was not declared in this scope
> XML.cpp:294: error: 'atof' was not declared in this scope
> make[4]: *** [XML.lo] Error 1

--- Atlas/Codecs/XML.cpp~       2007-04-01 15:38:50.000000000 +0000
+++ Atlas/Codecs/XML.cpp        2007-04-01 15:38:55.000000000 +0000
@@ -4,6 +4,7 @@
 
 #include <Atlas/Codecs/XML.h>
 
+#include <cstdlib>
 #include <iostream>
 
 namespace Atlas { namespace Codecs {
--- Atlas/Codecs/Packed.cpp~    2007-04-01 15:42:11.000000000 +0000
+++ Atlas/Codecs/Packed.cpp     2007-04-01 15:42:18.000000000 +0000
@@ -4,6 +4,7 @@
 
 #include <Atlas/Codecs/Packed.h>
 
+#include <cstdlib>
 #include <iostream>
 
 namespace Atlas { namespace Codecs {
--- Atlas/Codecs/Bach.cpp~      2007-04-01 15:42:26.000000000 +0000
+++ Atlas/Codecs/Bach.cpp       2007-04-01 15:42:31.000000000 +0000
@@ -6,6 +6,7 @@
 
 #include <Atlas/Debug.h>
 
+#include <cstdlib>
 #include <iostream>
 
 static const bool debug_flag = false;
--- tools/atlas_convert.cpp~    2007-04-01 15:44:46.000000000 +0000
+++ tools/atlas_convert.cpp     2007-04-01 15:44:54.000000000 +0000
@@ -14,6 +14,7 @@
 #include <fstream>
 #include <iostream>
 
+#include <cstdlib>
 #include <unistd.h>
 
 int option_format = 0;

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


--- End Message ---
--- Begin Message ---
Source: atlas-cpp
Source-Version: 0.6.0-3

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

atlas-cpp_0.6.0-3.diff.gz
  to pool/main/a/atlas-cpp/atlas-cpp_0.6.0-3.diff.gz
atlas-cpp_0.6.0-3.dsc
  to pool/main/a/atlas-cpp/atlas-cpp_0.6.0-3.dsc
libatlas-cpp-0.6-1-dbg_0.6.0-3_i386.deb
  to pool/main/a/atlas-cpp/libatlas-cpp-0.6-1-dbg_0.6.0-3_i386.deb
libatlas-cpp-0.6-1_0.6.0-3_i386.deb
  to pool/main/a/atlas-cpp/libatlas-cpp-0.6-1_0.6.0-3_i386.deb
libatlas-cpp-0.6-dev_0.6.0-3_i386.deb
  to pool/main/a/atlas-cpp/libatlas-cpp-0.6-dev_0.6.0-3_i386.deb
libatlas-cpp-doc_0.6.0-3_all.deb
  to pool/main/a/atlas-cpp/libatlas-cpp-doc_0.6.0-3_all.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.
Michael Koch <[EMAIL PROTECTED]> (supplier of updated atlas-cpp 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: Thu, 28 Jun 2007 12:48:51 -0100
Source: atlas-cpp
Binary: libatlas-cpp-0.6-1-dbg libatlas-cpp-0.6-dev libatlas-cpp-doc 
libatlas-cpp-0.6-1
Architecture: source i386 all
Version: 0.6.0-3
Distribution: unstable
Urgency: low
Maintainer: Michael Koch <[EMAIL PROTECTED]>
Changed-By: Michael Koch <[EMAIL PROTECTED]>
Description: 
 libatlas-cpp-0.6-1 - The protocol library of the World Forge project - runtime 
libs
 libatlas-cpp-0.6-1-dbg - The protocol library of the World Forge project - 
debugging libs
 libatlas-cpp-0.6-dev - The protocol library of the World Forge project - 
header files
 libatlas-cpp-doc - The protocol library of the World Forge project - 
documentation
Closes: 417110
Changes: 
 atlas-cpp (0.6.0-3) unstable; urgency=low
 .
   * Ported debian/rules to CDBS.
   * Added patch to make the package compile with GCC 4.3. Closes: #417110.
   * Replace obsolete ${Source-Version} in debian/control.
Files: 
 5276300646c9a499f4ba5195c96eb0c4 656 libs optional atlas-cpp_0.6.0-3.dsc
 b0188ae32ef498593039c0b551040c9d 19495 libs optional atlas-cpp_0.6.0-3.diff.gz
 1d85a4903e64ca87e4df065cde0ab981 22582 doc optional 
libatlas-cpp-doc_0.6.0-3_all.deb
 0369306c759d1cfac8a6aa226d628787 213248 libs optional 
libatlas-cpp-0.6-1_0.6.0-3_i386.deb
 9a9ded60eadec198dedff4137aacc170 1147114 libdevel extra 
libatlas-cpp-0.6-1-dbg_0.6.0-3_i386.deb
 525cf8e11d53982fc6f5badd6df4ebb5 53042 libdevel optional 
libatlas-cpp-0.6-dev_0.6.0-3_i386.deb

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

iD8DBQFGhSTEWSOgCCdjSDsRAnCoAJ4ilj8D71G+9miOox5tO0G3+mc/GACfWjbd
gbDnCJN2rsfFCwOiibjQtJ8=
=Ro93
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to