Hi Eric,

I'll just remove the #if block and just using the Standard Library
headers as the rest of the OSG uses.  I suspect Terrex don't do much
work on other platforms beyond Linux and Windows.

Robert.


On 6/28/06, E. Wing <[EMAIL PROTECTED]> wrote:
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/

_______________________________________________
osg-users mailing list
[email protected]
http://openscenegraph.net/mailman/listinfo/osg-users
http://www.openscenegraph.org/

Reply via email to