Package: logtools Version: 0.13c 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. > Automatic build of logtools_0.13c on em64t by sbuild/amd64 0.53 ... > c++ -O2 -g -DNDEBUG -Wall -W -Wshadow -Wpointer-arith -Wcast-align > -Wwrite-strings -Wcast-qual -Woverloaded-virtual -pedantic -ffor-scope > clfsplit.cpp -o clfsplit -lstdc++ > clfsplit.cpp: In function 'void usage()': > clfsplit.cpp:21: error: 'exit' was not declared in this scope > clfsplit.cpp: In member function 'void file_wrap::write(const char*)': > clfsplit.cpp:40: error: 'exit' was not declared in this scope > clfsplit.cpp: In function 'void process_spec(MAP&, const char*, const char*)': > clfsplit.cpp:126: error: 'exit' was not declared in this scope > clfsplit.cpp:138: error: 'exit' was not declared in this scope > clfsplit.cpp:143: error: 'exit' was not declared in this scope > clfsplit.cpp:179: error: 'atoi' was not declared in this scope > clfsplit.cpp:185: error: 'free' was not declared in this scope > clfsplit.cpp:192: error: 'free' was not declared in this scope > make[1]: *** [clfsplit] Error 1 --- clfsplit.cpp~ 2007-04-02 13:33:20.000000000 +0000 +++ clfsplit.cpp 2007-04-02 13:33:26.000000000 +0000 @@ -1,3 +1,4 @@ +#include <cstdlib> #include <unistd.h> #include <stdio.h> #include <string.h> -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

