From e6357366d1bd57078834f36208940a489890d904 Mon Sep 17 00:00:00 2001 From: Guilherme Amadio Date: Mon, 11 Jan 2016 23:17:27 -0200 Subject: sci-physics/bullet: drop old versions and patches Package-Manager: portage-2.2.26 --- sci-physics/bullet/files/bullet-2.77-gcc46.patch | 47 ------------------------ 1 file changed, 47 deletions(-) delete mode 100644 sci-physics/bullet/files/bullet-2.77-gcc46.patch (limited to 'sci-physics/bullet/files/bullet-2.77-gcc46.patch') diff --git a/sci-physics/bullet/files/bullet-2.77-gcc46.patch b/sci-physics/bullet/files/bullet-2.77-gcc46.patch deleted file mode 100644 index 9ef054836e33..000000000000 --- a/sci-physics/bullet/files/bullet-2.77-gcc46.patch +++ /dev/null @@ -1,47 +0,0 @@ - src/BulletSoftBody/btSoftBody.h | 3 +++ - src/BulletSoftBody/btSoftBodyInternals.h | 4 ++-- - 2 files changed, 5 insertions(+), 2 deletions(-) - -diff --git a/src/BulletSoftBody/btSoftBody.h b/src/BulletSoftBody/btSoftBody.h -index 4d975b7..f781598 100644 ---- a/src/BulletSoftBody/btSoftBody.h -+++ b/src/BulletSoftBody/btSoftBody.h -@@ -30,6 +30,7 @@ subject to the following restrictions: - class btBroadphaseInterface; - class btDispatcher; - -+class btSoftBodySolver; - - /* btSoftBodyWorldInfo */ - struct btSoftBodyWorldInfo -@@ -52,6 +53,8 @@ class btSoftBody : public btCollisionObject - public: - btAlignedObjectArray m_collisionDisabledObjects; - -+ // The solver object that handles this soft body -+ btSoftBodySolver *m_softBodySolver; - // - // Enumerations - // -diff --git a/src/BulletSoftBody/btSoftBodyInternals.h b/src/BulletSoftBody/btSoftBodyInternals.h -index 2cb7744..296d97a 100644 ---- a/src/BulletSoftBody/btSoftBodyInternals.h -+++ b/src/BulletSoftBody/btSoftBodyInternals.h -@@ -26,6 +26,7 @@ subject to the following restrictions: - #include "BulletCollision/CollisionShapes/btConvexInternalShape.h" - #include "BulletCollision/NarrowPhaseCollision/btGjkEpa2.h" - -+#include //for memset - // - // btSymMatrix - // -@@ -172,8 +173,7 @@ public: - template - static inline void ZeroInitialize(T& value) - { -- static const T zerodummy; -- value=zerodummy; -+ memset(&value,0,sizeof(T)); - } - // - template -- cgit v1.2.3-65-gdbad