Package: jlint Version: 3.0-4.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 from unstable. > Automatic build of jlint_3.0-4.1 on coconut0 by sbuild/ia64 0.49 ... > g++ -c -Wall -O2 -g access_desc.cc > In file included from method_desc.hh:20, > from graph.hh:5, > from class_desc.hh:8, > from access_desc.hh:8, > from access_desc.cc:1: > string_pool.hh: In member function 'void string_pool::remove(const char*)': > string_pool.hh:62: error: 'free' was not declared in this scope > string_pool.hh: In member function 'void string_pool::clear()': > string_pool.hh:69: error: 'free' was not declared in this scope > make[1]: *** [access_desc.o] Error 1 --- string_pool.hh~ 2007-04-01 21:18:56.000000000 +0000 +++ string_pool.hh 2007-04-01 21:19:19.000000000 +0000 @@ -1,6 +1,8 @@ #ifndef STRING_POOL_HH #define STRING_POOL_HH +#include <cstdlib> + #ifdef __GNUC__ #if __GNUC__ > 2 using namespace std; -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]