Linux compile missing files? [fixed]

ChrisC

22-10-2008 16:04:25

./configure complained og missing .am file so I grabbed the svn version instead

it configure(d) but during compile I got

In file included from ../include/OgreOdeWorld.h:4,
from OgreOdeBody.cpp:4:
../include/OgreOdePreReqs.h:6:32: error: OgreNoMemoryMacros.h: No such file or directory
../include/OgreOdePreReqs.h:7:30: error: OgreMemoryMacros.h: No such file or directory
In file included from OgreOdeBody.cpp:8:
../include/OgreOdeGeometry.h:397: error: extra qualification ‘OgreOde::TriangleMeshGeometry::’ on member ‘getTriangleMeshData’

I'm using Ogre 1.6 (source) and ode current svn on Ubuntu Intrepid

I did a grep for both of these files in ogre's source and ogreode's without joy!

ChrisC

23-10-2008 02:39:40

TriangleMeshDataPtr TriangleMeshGeometry::getTriangleMeshData(){ return _dataPtr; }

becomes

TriangleMeshDataPtr getTriangleMeshData(){ return _dataPtr; }


old chest nut that one!

AFAIK the missing includes (previous ogre version?) can be commented out...