Package: gnuradio Version: 3.0.3-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 (20070326-1 or higher) from unstable. (Currently not available for i386, but for amd64, powerpc and ia64. I hope to have i386 binaries in the archive in the near future.) > Automatic build of gnuradio_3.0.3-1 on coconut0 by sbuild/ia64 0.49 ... > g++ -DHAVE_CONFIG_H -I. -I. -I../../../.. > -I../../../../gnuradio-core/src/lib/runtime > -I../../../../gnuradio-core/src/lib/general > -I../../../../gnuradio-core/src/lib/general > -I../../../../gnuradio-core/src/lib/filter > -I../../../../gnuradio-core/src/lib/filter > -I../../../../gnuradio-core/src/lib/reed-solomon > -I../../../../gnuradio-core/src/lib/io > -I../../../../gnuradio-core/src/lib/g72x > -I../../../../gnuradio-core/src/lib/omnithread > -I../../../../gnuradio-core/src/lib/swig > -I../../../../gnuradio-core/src/lib/swig -g -O2 -Wall -Woverloaded-virtual > -pthread -MT gr_dispatcher.lo -MD -MP -MF .deps/gr_dispatcher.Tpo -c > gr_dispatcher.cc -fPIC -DPIC -o .libs/gr_dispatcher.o > gr_dispatcher.cc: In member function 'void gr_dispatcher::loop(double)': > gr_dispatcher.cc:177: error: 'perror' was not declared in this scope > make[6]: *** [gr_dispatcher.lo] Error 1 > make[6]: Leaving directory > `/build/tbm/gnuradio-3.0.3/gnuradio-core/src/lib/runtime' --- gnuradio-core/src/lib/runtime/gr_dispatcher.cc~ 2007-04-25 08:27:57.000000000 +0000 +++ gnuradio-core/src/lib/runtime/gr_dispatcher.cc 2007-04-25 08:28:35.000000000 +0000 @@ -27,6 +27,7 @@ #include <gr_dispatcher.h> #include <math.h> #include <errno.h> +#include <stdio.h> #ifdef HAVE_SELECT # ifdef HAVE_SYS_SELECT_H -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]