Package: mcmcpack Version: 0.8-1-1 Usertags: ftbfs-gcc-4.3 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 mcmcpack_0.8-1-1 on coconut0 by sbuild/ia64 0.49 ... > ** libs > make[1]: Entering directory `/build/tbm/mcmcpack-0.8-1/src' > g++ -I/usr/share/R/include -I/usr/share/R/include -DSCYTHE_COMPILE_DIRECT > -DSCYTHE_NO_RANGE -DHAVE_TRUNC -fpic -g -O2 -c MCMCSVDreg.cc -o MCMCSVDreg.o > In file included from matrix.h:38, > from MCMCSVDreg.cc:28: > error.h: In function 'void SCYTHE::scythe_terminate()': > error.h:312: error: 'abort' was not declared in this scope > In file included from MCMCSVDreg.cc:28: Here's a patch for the first problem. I don't know if there are others because I coldn't find out how the build system works. --- src/error.h~ 2007-04-02 18:47:30.000000000 +0000 +++ src/error.h 2007-04-02 18:47:36.000000000 +0000 @@ -22,6 +22,7 @@ #ifndef SCYTHE_ERROR_H #define SCYTHE_ERROR_H +#include <cstdlib> #include <exception> #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]

