diff options
author | dholland <dholland> | 2012-12-21 02:33:08 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-12-21 02:33:08 +0000 |
commit | cc1de99c9e4a1fe5e9555a9fe274f7bed499efa8 (patch) | |
tree | b7d7e93866a174cf495a8912969dc6c7007baf6f /devel/bullet | |
parent | 299b8ddb4a1038550c36a4ea69649b1726370eea (diff) | |
download | pkgsrc-cc1de99c9e4a1fe5e9555a9fe274f7bed499efa8.tar.gz |
Add missing linkage to own library. May fix the build failures seen
on some platforms. I have no idea why this would fail in a machine-
dependent way.
Diffstat (limited to 'devel/bullet')
-rw-r--r-- | devel/bullet/distinfo | 3 | ||||
-rw-r--r-- | devel/bullet/patches/patch-Demos_MiniCL__VectorAdd_CMakeLists.txt | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/devel/bullet/distinfo b/devel/bullet/distinfo index 705de8673ac..b7e8e337672 100644 --- a/devel/bullet/distinfo +++ b/devel/bullet/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.2 2012/10/20 22:07:40 joerg Exp $ +$NetBSD: distinfo,v 1.3 2012/12/21 02:33:08 dholland Exp $ SHA1 (bullet-2.76.tgz) = 95043d586001387eab50cd773f4082e1a0d6f1b0 RMD160 (bullet-2.76.tgz) = 2024f8674791e596dd6b605000dad8052a796eed Size (bullet-2.76.tgz) = 6193578 bytes +SHA1 (patch-Demos_MiniCL__VectorAdd_CMakeLists.txt) = cb80ec8046c9b93811540aef97dcc255b7c31e8f SHA1 (patch-aa) = de9d5ce6e67c8e5a4a2efa5c67e48bbb790d54ce SHA1 (patch-src_BulletSoftBody_btSoftBodyInternals.h) = 00b5a8b56f17239d90e9411932a4e6f1ac5ee443 diff --git a/devel/bullet/patches/patch-Demos_MiniCL__VectorAdd_CMakeLists.txt b/devel/bullet/patches/patch-Demos_MiniCL__VectorAdd_CMakeLists.txt new file mode 100644 index 00000000000..4b15f0c9463 --- /dev/null +++ b/devel/bullet/patches/patch-Demos_MiniCL__VectorAdd_CMakeLists.txt @@ -0,0 +1,16 @@ +$NetBSD: patch-Demos_MiniCL__VectorAdd_CMakeLists.txt,v 1.1 2012/12/21 02:33:08 dholland Exp $ + +Add missing internal library. I have no idea why this only causes +this to break on i386 and not amd64; I blame libtool. + +--- Demos/MiniCL_VectorAdd/CMakeLists.txt~ 2010-02-08 22:42:58.000000000 +0000 ++++ Demos/MiniCL_VectorAdd/CMakeLists.txt +@@ -6,7 +6,7 @@ ${BULLET_PHYSICS_SOURCE_DIR}/src + ) + + LINK_LIBRARIES( +- BulletMultiThreaded LinearMath ++ BulletMultiThreaded BulletDynamics LinearMath + ) + + ADD_EXECUTABLE(AppMiniCLVectorAdd |