Package: avida Version: 2.0b7-4 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 avida_2.0b7-4 on coconut0 by sbuild/ia64 0.49 .. > if ia64-linux-gnu-g++ -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" > -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" > -DPACKAGE=\"avida\" -DVERSION=\"2.0b7\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 > -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 > -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 > -DHAVE_NCURSES_H=1 -I. -I. -I./../event -I../event -I./../cpu -O2 -MT > org_message.o -MD -MP -MF ".deps/org_message.Tpo" \ > -c -o org_message.o `test -f 'org_message.cc' || echo > './'`org_message.cc; \ > then mv -f ".deps/org_message.Tpo" ".deps/org_message.Po"; \ > else rm -f ".deps/org_message.Tpo"; exit 1; \ > fi > org_message.cc: In member function 'void cOrgMessage::GetData(int&)': > org_message.cc:21: error: 'atoi' was not declared in this scope > org_message.cc: In member function 'void cOrgMessage::GetData(double&)': > org_message.cc:26: error: 'atof' was not declared in this scope > make[4]: *** [org_message.o] Error 1 > make[4]: Leaving directory `/build/tbm/avida-2.0b7/source/main' --- source/main/org_message.cc~ 2007-04-01 16:02:42.000000000 +0000 +++ source/main/org_message.cc 2007-04-01 16:02:48.000000000 +0000 @@ -1,4 +1,5 @@ #include "org_message.hh" +#include <cstdlib> #include <string> #include <sstream> -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]