There is an annoying problem in trpage_sys.h which is going to prevent compiling on everything but Windows and Linux:
#if defined(_WIN32) || defined(linux) #include <vector> #include <map> #include <string> #else #include <vector.h> #include <map.h> #endif This is totally backwards. I don't know which compiler is looking for <vector.h> and <map.h>, but this compiler should be the exception, not the default rule. This blocks compile on OS X, and I presume BSD, Solaris, IRIX, and so forth will have problems too. You might be able to revert to the old version in CVS completely. -Eric _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/
