diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2006-03-11 01:13:04 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2006-03-11 01:13:04 +0000 |
commit | 86ebc10be56996b4080f57c5fc3fa530c64ab97a (patch) | |
tree | 07611a74aca167584caa92ab9f58d30bbe25617c /dev-games/ogre/files | |
parent | Version bump; bug #125403. (diff) | |
download | historical-86ebc10be56996b4080f57c5fc3fa530c64ab97a.tar.gz historical-86ebc10be56996b4080f57c5fc3fa530c64ab97a.tar.bz2 historical-86ebc10be56996b4080f57c5fc3fa530c64ab97a.zip |
Add patch to fix compilation with gcc-4.1 by Karol Szumski <mareviq AT interia DOT pl>; bug #120733
Package-Manager: portage-2.1_pre5-r4
Diffstat (limited to 'dev-games/ogre/files')
-rw-r--r-- | dev-games/ogre/files/digest-ogre-1.0.6 | 2 | ||||
-rw-r--r-- | dev-games/ogre/files/ogre-1.0.6-gcc41.patch | 61 |
2 files changed, 63 insertions, 0 deletions
diff --git a/dev-games/ogre/files/digest-ogre-1.0.6 b/dev-games/ogre/files/digest-ogre-1.0.6 index e38394676f17..a4a654336ea0 100644 --- a/dev-games/ogre/files/digest-ogre-1.0.6 +++ b/dev-games/ogre/files/digest-ogre-1.0.6 @@ -1 +1,3 @@ MD5 49d75f22a5893bdab31367c069b9b99b ogre-linux_osx-v1-0-6.tar.bz2 19239215 +RMD160 5c017416ee1072b8a81c430bb7972e00d43d5f14 ogre-linux_osx-v1-0-6.tar.bz2 19239215 +SHA256 11bc7d10f99003c4202d63178e8a02387d48132389956967d56b1b39727cc9c7 ogre-linux_osx-v1-0-6.tar.bz2 19239215 diff --git a/dev-games/ogre/files/ogre-1.0.6-gcc41.patch b/dev-games/ogre/files/ogre-1.0.6-gcc41.patch new file mode 100644 index 000000000000..91a0357848be --- /dev/null +++ b/dev-games/ogre/files/ogre-1.0.6-gcc41.patch @@ -0,0 +1,61 @@ +--- ./ogrenew/OgreMain/include/OgreEntity.h.old 2005-11-16 21:39:05.000000000 +0100 ++++ ./ogrenew/OgreMain/include/OgreEntity.h 2006-01-28 15:10:57.000000000 +0100 +@@ -568,7 +568,7 @@ + + /** Stops sharing the SkeletonInstance with other entities. + */ +- void Entity::stopSharingSkeletonInstance(); ++ void stopSharingSkeletonInstance(); + + + /** + +--- ./ogrenew/OgreMain/include/OgreHardwareOcclusionQuery.h.old 2005-08-20 01:47:32.000000000 +0200 ++++ ./ogrenew/OgreMain/include/OgreHardwareOcclusionQuery.h 2006-01-28 15:18:38.000000000 +0100 +@@ -113,7 +113,7 @@ + * Lets you know when query is done, or still be processed by the Hardware + * @return true if query isn't finished. + */ +- virtual bool HardwareOcclusionQuery::isStillOutstanding(void) = 0; ++ virtual bool isStillOutstanding(void) = 0; + /** + * + * @Remarks This function allows you to set how often the hardware occlusion really are sent to the driver + +--- ./ogrenew/OgreMain/include/OgreImage.h.old 2005-04-06 15:30:43.000000000 +0200 ++++ ./ogrenew/OgreMain/include/OgreImage.h 2006-01-28 14:56:54.000000000 +0100 +@@ -136,7 +136,7 @@ + @remarks + The size of the buffer must be numFaces*PixelUtil::getMemorySize(width, height, depth, format) + */ +- Image& Image::loadDynamicImage( uchar* pData, size_t uWidth, size_t uHeight, ++ Image& loadDynamicImage( uchar* pData, size_t uWidth, size_t uHeight, + size_t depth, + PixelFormat eFormat, bool autoDelete = false, + size_t numFaces = 1, size_t numMipMaps = 0); + +--- ./ogrenew/PlugIns/OctreeSceneManager/include/OgreOctreeSceneManager.h.old 2005-02-04 18:51:24.000000000 +0100 ++++ ./ogrenew/PlugIns/OctreeSceneManager/include/OgreOctreeSceneManager.h 2006-01-28 15:30:05.000000000 +0100 +@@ -193,8 +193,8 @@ + /** Overridden from SceneManager */ + void clearScene(void); + +- AxisAlignedBoxSceneQuery* OctreeSceneManager::createAABBQuery(const AxisAlignedBox& box, unsigned long mask); +- SphereSceneQuery* OctreeSceneManager::createSphereQuery(const Sphere& sphere, unsigned long mask); ++ AxisAlignedBoxSceneQuery* createAABBQuery(const AxisAlignedBox& box, unsigned long mask); ++ SphereSceneQuery* createSphereQuery(const Sphere& sphere, unsigned long mask); + PlaneBoundedVolumeListSceneQuery* createPlaneBoundedVolumeQuery(const PlaneBoundedVolumeList& volumes, unsigned long mask); + RaySceneQuery* createRayQuery(const Ray& ray, unsigned long mask); + IntersectionSceneQuery* createIntersectionQuery(unsigned long mask); + +--- ./ogrenew/Tools/XMLConverter/include/tinyxml.h.old 2003-09-11 00:48:29.000000000 +0200 ++++ ./ogrenew/Tools/XMLConverter/include/tinyxml.h 2006-01-28 15:42:29.000000000 +0100 +@@ -790,7 +790,7 @@ + #endif + + /// Construct. +- TiXmlDeclaration::TiXmlDeclaration( const char * _version, ++ TiXmlDeclaration( const char * _version, + const char * _encoding, + const char * _standalone ); + |