Quote:
class Ogre::MovableObject’ has no member named ‘getReceivesShadows’
seems like your ogre version is too old, current is 1.6.4.
you can see which you have with
Code:
cat /usr/local/include/OGRE/OgrePrerequisites.h | grep "define OGRE_VERSION"
i'll try to disbale the line that throws an error, so if you update in a little while, the error might be solved as well.
will only work if you use trunk, not on the stable branch.
also please see ./installdeps.ubuntu.sh for how to deal with the fmod error message :
Quote:
FMOD
iris 2 uses fmod ex 4.* to play music files. alternatively you can use openal, but that has no music then.
you can download fmod ex 4.* stable for linux from
http://www.fmod.org/index.php/download please install the 32 bit version of fmod, even if you have a 64 bit system, our buildscript wont be able to find it otherwise
direct download link (august 2009) :
http://www.fmod.org/index.php/release/v ... nux.tar.gz you probably have to add a symbolic link so that iris can find the fmod lib, since the filename contains the version
to do that run
#> locate libfmod
if it lists something like /usr/local/lib/libfmodex-4.27.06.so
then you should make a symbolic link like this :
#> sudo ln -s /usr/local/lib/libfmodex-4.27.06.so /usr/local/lib/libfmodex.so
then iris will find it during compile : ./makeclean.sh && ./premakelinux.sh
if you get linker errors like 'undefined reference to ... FMOD_...' (64 bit problem) you can disable fmod by editing premake.lua and setting 'gbUseSoundFmod = true' to false