On Tue, Jun 17, 2003 at 09:03:48AM +1000, Matt M wrote: > GCC is only a C Compiler. What you need to compile C++ is g++, the GNU C++
More precisely, at least on the system that I have gcc, g++ is a C++ compiler which automatically links in the c++ standard library. gcc is also a c++ compiler, but it doesn't link in the c++ standard library, and it will switch between c++ and C depending on the suffix of the file (.c vs one of .cc, .cxx, .c++ ...) Anyway, the answer (install g++) re courier compilation is probably the same, but you wouldn't expect this sort of foul-up in an autoconfiscated app. Matt PS. then again maybe you would :-) -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
