Package: gmetadom Version: 0.2.4-3 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 gmetadom_0.2.4-3 on em64t by sbuild/amd64 0.53 ... > g++ -DHAVE_CONFIG_H -I. -I. -I../../.. -I/usr/include/libgdome > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 > -I./../include -g -Wall -O2 -c GdomeSmartDOMGdomeString.cc -fPIC -DPIC -o > .libs/GdomeSmartDOMGdomeString.o > GdomeSmartDOMGdomeString.cc: In constructor > 'GdomeSmartDOM::GdomeString::GdomeString(const GdomeSmartDOM::UTF8String&)': > GdomeSmartDOMGdomeString.cc:238: error: 'malloc' was not declared in this > scope > GdomeSmartDOMGdomeString.cc: In constructor > 'GdomeSmartDOM::GdomeString::GdomeString(const GdomeSmartDOM::UTF16String&)': > GdomeSmartDOMGdomeString.cc:253: error: 'malloc' was not declared in this > scope > GdomeSmartDOMGdomeString.cc: In constructor > 'GdomeSmartDOM::GdomeString::GdomeString(const GdomeSmartDOM::UCS4String&)': > GdomeSmartDOMGdomeString.cc:269: error: 'malloc' was not declared in this > scope > make[6]: *** [GdomeSmartDOMGdomeString.lo] Error 1 > make[6]: Leaving directory > `/build/tbm/gmetadom-0.2.4/src/gdome_cpp_smart/basic' --- src/gdome_cpp_smart/basic/GdomeSmartDOMGdomeString.cc~ 2007-04-01 20:00:01.000000000 +0000 +++ src/gdome_cpp_smart/basic/GdomeSmartDOMGdomeString.cc 2007-04-01 20:00:14.000000000 +0000 @@ -23,6 +23,7 @@ #include <config.h> +#include <cstdlib> #include <string> #include <gdome.h> --- src/gdome_cpp_smart/test/main.cc~ 2007-04-01 20:02:52.000000000 +0000 +++ src/gdome_cpp_smart/test/main.cc 2007-04-01 20:02:58.000000000 +0000 @@ -23,6 +23,7 @@ #include <config.h> +#include <cstdlib> #include <cassert> #include <gdome.h> --- src/gdome_cpp_smart/test/deep.cc~ 2007-04-01 20:03:26.000000000 +0000 +++ src/gdome_cpp_smart/test/deep.cc 2007-04-01 20:03:34.000000000 +0000 @@ -23,6 +23,7 @@ #include <config.h> +#include <cstdlib> #include <gdome.h> #include <iostream> -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]