On Tue, 2008-12-09 at 11:53 +0100, Chiara De Dominicis wrote: > doc/Makefile.am:77: `%'-style pattern rules are a GNU make extension > doc/Makefile.am:80: `%'-style pattern rules are a GNU make extension > > I thought it was only a warning but probably it isn't so....
This is indeed a warning, and harmless. > bbn_tap.cc: In constructor 'bbn_tap::bbn_tap(std::string, int)': > bbn_tap.cc:51: error: 'memset' was not declared in this scope > bbn_tap.cc:53: error: 'strncpy' was not declared in this scope Are you using gcc 4.3? It now enforces having the proper #include directives for certain standard library functions that it would previously silently ignore. I'd try adding #include <string.h> ...at the top of bbn_tap.cc to see if this goes away. -Johnathan _______________________________________________ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio