Skip to content
Commits on Source (2)
orthanc (1.3.2+dfsg-2) UNRELEASED; urgency=medium
orthanc (1.3.2+dfsg-2) unstable; urgency=medium
* Fix copyright
* Set -DNDEBUG to disable assertion checking
* Set -DCMAKE_BUILD_TYPE=None
-- Sebastien Jodogne <s.jodogne@gmail.com> Thu, 19 Apr 2018 20:05:21 +0200
-- Sebastien Jodogne <s.jodogne@gmail.com> Fri, 27 Apr 2018 13:24:36 +0200
orthanc (1.3.2+dfsg-1) unstable; urgency=medium
......
......@@ -10,6 +10,11 @@ export UPSTREAM_VERSION := $(shell echo "$(DEB_VERSION)" | cut -d '+' -f 1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# Disable assert() checking from upstream project, for best performance
# https://lists.debian.org/debian-med/2018/04/msg00132.html
export DEB_CFLAGS_MAINT_APPEND=-DNDEBUG
export DEB_CXXFLAGS_MAINT_APPEND=-DNDEBUG
%:
dh $@ --builddirectory=Build
......