trying to include <sys/sysctl.h> which my system does not have.
I fixed it by changing line 44 from:
Code: Select all
#if OGRE_PLATFORM == OGRE_PLATFORM_ANDROID
Code: Select all
#if OGRE_PLATFORM == OGRE_PLATFORM_ANDROID || OGRE_PLATFORM == OGRE_PLATFORM_LINUX
This way it includes <linux/sysctl.h> instead