Skip to content
Commits on Source (4)
opensurgsim (0.7.0-7) unstable; urgency=medium
* Team upload.
[ Steve Langasek ]
* Fix for build failure with boost 1.65
[ Andreas Tille ]
* Standards-Version: 4.1.3
* debhelper 11
* Install NOTICE file
-- Andreas Tille <tille@debian.org> Tue, 20 Mar 2018 11:28:00 +0100
opensurgsim (0.7.0-6) unstable; urgency=medium
* Team upload
......
......@@ -3,7 +3,7 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Paul Novotny <paul@paulnovo.us>
Section: science
Priority: optional
Build-Depends: debhelper (>= 10),
Build-Depends: debhelper (>= 11~),
dh-linktree,
libboost-chrono-dev,
libboost-date-time-dev,
......@@ -18,7 +18,7 @@ Build-Depends: debhelper (>= 10),
libjs-mathjax,
libopenscenegraph-dev,
libyaml-cpp-dev (>= 0.5.2)
Standards-Version: 4.1.2
Standards-Version: 4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/opensurgsim.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/opensurgsim.git
Homepage: http://www.opensurgsim.org/
......
Description: make code compatible with boost 1.65.
The code previously worked by virtue of certain standard headers (iostream)
being indirectly included via boost. In boost 1.65 these headers are not
included for us, so include them directly.
Author: Steve Langasek <steve.langasek@ubuntu.com>
Last-Updated: 2018-03-19
Bug-Debian: https://bugs.debian.org/893589
Index: opensurgsim-0.7.0/SurgSim/Blocks/DebugDumpBehavior.cpp
===================================================================
--- opensurgsim-0.7.0.orig/SurgSim/Blocks/DebugDumpBehavior.cpp
+++ opensurgsim-0.7.0/SurgSim/Blocks/DebugDumpBehavior.cpp
@@ -13,6 +13,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+#include <iostream>
+
#include "SurgSim/Blocks/DebugDumpBehavior.h"
#include "SurgSim/DataStructures/DataGroup.h"
@@ -163,4 +165,4 @@
}
}
-}
\ No newline at end of file
+}
......@@ -6,3 +6,4 @@ fix-matrix-tests.patch
disable-thread-pool-on-armel.patch
Assert-death-only-if-supported.patch
ignore-failing-tests.patch
boost-1.65-compat.patch
......@@ -4,7 +4,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=-format,+bindnow
export GOOGLEMOCK_DIR = /usr/src/googletest/googlemock
%:
dh $@ --parallel --with linktree
dh $@ --with linktree
ifeq (,$(filter $(DEB_BUILD_ARCH),i386 arm64 armel armhf powerpc ppc64el ppc64))
EIGEN_ALIGNMENT=ON
......