Package: bincimap Version: 1.2.14beta2.dfsg-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 (20070326-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 bincimap_1.2.14beta2.dfsg-1 on em64t by sbuild/amd64 0.53 ... > if g++ -DHAVE_CONFIG_H -I. -I. -I.. -Wall -O2 -Wall -fno-exceptions -O2 > -I. -MT address.o -MD -MP -MF ".deps/address.Tpo" \ > -c -o address.o `test -f 'address.cc' || echo './'`address.cc; \ > then mv ".deps/address.Tpo" ".deps/address.Po"; \ > else rm -f ".deps/address.Tpo"; exit 1; \ > fi > In file included from convert.h:49, > from address.cc:39: > depot.h:107: warning: type qualifiers ignored on function return type > In file included from address.cc:39: > convert.h: In function 'int Binc::atoi(const std::string&)': > convert.h:86: error: '::atoi' has not been declared > make[3]: *** [address.o] Error 1 > make[3]: Leaving directory `/build/tbm/bincimap-1.2.14beta2.dfsg/src' --- src/convert.h~ 2007-04-25 08:17:43.000000000 +0000 +++ src/convert.h 2007-04-25 08:17:54.000000000 +0000 @@ -37,6 +37,7 @@ #ifndef convert_h_included #define convert_h_included +#include <cstdlib> #include <string> #include <vector> #include <iomanip> --- src/tools.cc~ 2007-04-25 08:23:46.000000000 +0000 +++ src/tools.cc 2007-04-25 08:23:55.000000000 +0000 @@ -35,6 +35,7 @@ #include <config.h> #endif #include <errno.h> +#include <cstdlib> #include "tools.h" -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]