Package: gnash Version: 0.7.2-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 gnash_0.7.2-1 on em64t by sbuild/amd64 0.53 ... > x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I. -I.. -I../server > -I/usr/include/libxml2 -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/SDL > -I/usr/include -DQT_THREAD_SUPPORT -D_REENTRANT -g -O2 -W -Wall -Wcast-align > -Wcast-qual -Wpointer-arith -Wreturn-type -MT rc.lo -MD -MP -MF .deps/rc.Tpo > -c rc.cpp -fPIC -DPIC -o .libs/rc.o > In file included from rc.cpp:25: > ../server/StringPredicates.h: In member function 'bool > gnash::StringNoCaseLessThen::operator()(const std::string&, const > std::string&) const': > ../server/StringPredicates.h:44: error: 'toupper' was not declared in this > scope > ../server/StringPredicates.h: In member function 'bool > gnash::StringNoCaseEqual::operator()(const std::string&, const std::string&) > const': > ../server/StringPredicates.h:70: error: 'toupper' was not declared in this > scope > make[3]: *** [rc.lo] Error 1 --- server/StringPredicates.h~ 2007-04-01 20:03:47.000000000 +0000 +++ server/StringPredicates.h 2007-04-01 20:03:56.000000000 +0000 @@ -25,6 +25,7 @@ #endif #include <string> +#include <cctype> #include <cassert> // for inlines -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]