On Tue, 17 Apr 2007, Bernard Pidoux wrote: > I removed extra ';' on line 185 of src/refcount.hpp > and also replaced in all concerned files > > #include <iostream> > by > #include <sstream>
> aprsd.cpp: In function ?void serverQuit()?: > aprsd.cpp:139: error: ?cout? was not declared in this scope If you look at the header files you'll see that things like "cout" and "cerr" are defined in iostream and don't exist in sstream. On my system I'm looking in /usr/include/c++/4.0.2/iostream and SAMEPATH/sstream. So... Replacing the include files as you did appears to have created a new problem. Change them back and you'll at least be closer to succeeding. -- Curt, WE7U. APRS Client Comparisons: http://www.eskimo.com/~archer "Lotto: A tax on people who are bad at math." -- unknown "Windows: Microsoft's tax on computer illiterates." -- WE7U "The world DOES revolve around me: I picked the coordinate system!" - To unsubscribe from this list: send the line "unsubscribe linux-hams" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
