-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
104 additions
and
96 deletions.
There are no files selected for viewing
Submodule BEaST
updated
4 files
+25 −25 | CMakeLists.txt | |
+8 −2 | Testing/CMakeLists.txt | |
+10 −1 | scripts/beast_normalize | |
+0 −1 | spams-2.6.1/COPYING |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ILT
updated
4 files
+1 −1 | ILT/LayoutUtils.pm | |
+1 −1 | ILT/ProgUtils.pm | |
+5 −5 | ILT/SceneObject/IntersectionObject.pm | |
+2 −2 | ILT/SceneObject/UnionObject.pm |
39 changes: 0 additions & 39 deletions
39
cmake-modules/0001-Fix-1705-where-we-incorrectly-calculate-page-locatio.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From c3e30b2bc2234dfafc9e674c8ab5723fabeb04c5 Mon Sep 17 00:00:00 2001 | ||
From: Sacha <[email protected]> | ||
Date: Wed, 13 Mar 2019 23:21:54 +1000 | ||
Subject: [PATCH] Change 64-bit detection as explained in #2056 | ||
|
||
--- | ||
cmake/system_check.cmake | 6 +++++- | ||
1 file changed, 5 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/cmake/system_check.cmake b/cmake/system_check.cmake | ||
index 88bb081a6..f30a946b4 100644 | ||
--- a/cmake/system_check.cmake | ||
+++ b/cmake/system_check.cmake | ||
@@ -39,7 +39,11 @@ elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc.*|power.*|Power.*") | ||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "mips64.*") | ||
set(MIPS64 1) | ||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*") | ||
- set(X86_64 1) | ||
+ if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") | ||
+ set(X86_64 1) | ||
+ else() | ||
+ set(X86 1) | ||
+ endif() | ||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "i686.*|i386.*|x86.*|amd64.*|AMD64.*") | ||
set(X86 1) | ||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm.*|ARM.*)") |
25 changes: 25 additions & 0 deletions
25
cmake-modules/89af9b2694715bf8204993e032fa132f80cf37bd.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 89af9b2694715bf8204993e032fa132f80cf37bd Mon Sep 17 00:00:00 2001 | ||
From: Martino Pilia <[email protected]> | ||
Date: Fri, 1 Jun 2018 18:17:57 +0200 | ||
Subject: [PATCH] BUG: fix a bug in | ||
ImageSegmentation/antsAtroposSegmentationImageFilter.h | ||
|
||
This should be pretty obvious, the return type of a getter method was | ||
wrong. | ||
--- | ||
ImageSegmentation/antsAtroposSegmentationImageFilter.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/ImageSegmentation/antsAtroposSegmentationImageFilter.h b/ImageSegmentation/antsAtroposSegmentationImageFilter.h | ||
index e4b32a0cf..adeb4baad 100644 | ||
--- a/ImageSegmentation/antsAtroposSegmentationImageFilter.h | ||
+++ b/ImageSegmentation/antsAtroposSegmentationImageFilter.h | ||
@@ -518,7 +518,7 @@ class AtroposSegmentationImageFilter : | ||
/** | ||
* Get the prior label parameters. | ||
*/ | ||
- void GetPriorLabelParameterMap() | ||
+ LabelParameterMapType GetPriorLabelParameterMap() | ||
{ | ||
return this->m_PriorLabelParameterMap; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule minctools
updated
3 files
+2 −2 | conversion/dcm2mnc/dcm2mnc.c | |
+3 −0 | conversion/dcm2mnc/dicom_read.c | |
+7 −0 | progs/mincextract/mincextract.c |