forked from rock-simulation/simulation-package_set
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathode-0.12-export_joint_internals.patch
More file actions
28 lines (24 loc) · 956 Bytes
/
ode-0.12-export_joint_internals.patch
File metadata and controls
28 lines (24 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- ode/src/Makefile.am Fri Jul 11 08:16:50 2008
+++ ode/src/Makefile.am Wed Aug 8 08:43:51 2012
@@ -14,6 +14,13 @@
libode_la_LDFLAGS = @EXTRA_LIBTOOL_LDFLAGS@ @ODE_VERSION_INFO@
libode_la_LIBADD = libfast.la joints/libjoints.la
+# to create child classes of dJoint, we need to make more of
+# the internal data structures accessible.
+libode_la_includedir = $(includedir)/ode-internals
+libode_la_include_HEADERS = objects.h \
+ array.h \
+ obstack.h \
+ config.h
# please, let's keep the filenames sorted
libode_la_SOURCES = array.cpp array.h \
--- ode/src/joints/Makefile.am Wed Jun 4 23:47:13 2008
+++ ode/ode/src/joints/Makefile.am Wed Aug 8 08:43:51 2012
@@ -2,6 +2,9 @@
noinst_LTLIBRARIES = libjoints.la
+libjoints_la_includedir = $(includedir)/ode/joints
+libjoints_la_include_HEADERS = joint.h
+
libjoints_la_SOURCES = joints.h \
joint.h joint.cpp \
joint_internal.h \