Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
3
d/control: remove dep on dh-python, it is part of python2
· d961874a
Gert Wollny
authored
Dec 22, 2018
d961874a
d/p/fix_dyn..: Add patch to fix compilation error
· 5fd81ce7
Gert Wollny
authored
Dec 23, 2018
5fd81ce7
d/p: remove gcc version patch, the checks are now done upstream
· e58c0c14
Gert Wollny
authored
Dec 23, 2018
Also this patch seems to make some test fail
e58c0c14
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
e58c0c14
...
...
@@ -22,8 +22,7 @@ Build-Depends: debhelper (>= 9),
libminc-dev,
libnifti-dev,
libhdf5-dev,
dh_python,
python-all-dev
python-dev
# libvtk6-dev -- only needed if we enable one of the following modules:
# VtkGlue, LevelSetsv4Visualization
Standards-Version: 4.1.3
...
...
debian/patches/fix_dynamic_cast.patch
0 → 100644
View file @
e58c0c14
Author: Gert Wollny <gewo@debian.org>
Description: Fix an (old) upstream error for a type cast
--- a/Modules/Registration/PDEDeformable/include/itkMultiResolutionPDEDeformableRegistration.h
+++ b/Modules/Registration/PDEDeformable/include/itkMultiResolutionPDEDeformableRegistration.h
@@ -185,7 +185,7 @@
/** Get output deformation field. */
const DeformationFieldType * GetDeformationField(void)
{
- return itkDynamicCastInDebugMode<DeformationFieldType *> (this->GetDisplacementField());
+ return itkDynamicCastInDebugMode<const DeformationFieldType *> (this->GetDisplacementField());
}
#endif
debian/patches/series
View file @
e58c0c14
...
...
@@ -8,5 +8,6 @@ itk4.12.0-resource_cprobe.patch
disable-doxygen.patch
simplify-system-gtest.patch
fix-minc-includes.patch
remove_gcc_version_test.patch
#
remove_gcc_version_test.patch
#fix_python_tests.diff
fix_dynamic_cast.patch