diff options
author | Jake Forster <jakecameron.forster@gmail.com> | 2025-07-25 23:58:33 +0930 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-08-01 17:45:10 +0200 |
commit | 6a6e8673a9bfbd94216a8194059ccf6bcab1afaa (patch) | |
tree | a7e3e14f6212c2d45ad785b624b1aa57c428fbf9 /gnu/packages/patches/itk-snap-alt-glibc-compat.patch | |
parent | 82ab2e82f319e9112b15de162301a85671c1b590 (diff) |
gnu: itk-snap: Update to 4.2.2-0.6525125.
* gnu/packages/image-processing: Import (gnu packages ssh).
(itk-snap): Update to 4.2.2-0.6525125.
[source]: Fetch from the new official home on GitHub. Remove
itk-snap-alt-glibc-compat.patch.
[arguments]: Use gexps.
<#:configure-flags>: Remove "-DSNAP_VERSION_GIT_SHA1=release",
"-DSNAP_VERSION_GIT_TIMESTAMP=0", "-DCMAKE_POSITION_INDEPENDENT_CODE=ON",
"-DCMAKE_CXX_STANDARD=14".
<#:phases>{disable-gui-tests}: Disable more GUI tests.
{prepare-submodules}: Remove substitution in c3d checkout. Add digestible
submodule.
{fix-includes}: Delete phase.
{remove-bundled-jsoncpp}: New phase.
{wrap-executable}: Use gexp.
[inputs]: Replace insight-toolkit-4.12 with insight-toolkit-legacy. Replace
vtk-7 with vtk. Replace qtbase-5 with qtbase. Replace qtdeclarative-5 with
qtdeclarative. Add freetype, glew, jsoncpp and libssh. Remove bash-minimal,
fftw, fftwf, hdf5, vxl-1 and zlib.
[native-inputs]: Use new style. Update c3d and greedy checkouts. Add
digestible checkout. Remove googletest, qttools-5 and pkg-config.
* gnu/local.mk: Deregister itk-snap-alt-glibc-compat.patch.
* gnu/packages/patches/itk-snap-alt-glibc-compat.patch: Remove file.
Change-Id: I6a90a590fa773e838946d773e9b0a743129ee1f3
Diffstat (limited to 'gnu/packages/patches/itk-snap-alt-glibc-compat.patch')
-rw-r--r-- | gnu/packages/patches/itk-snap-alt-glibc-compat.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gnu/packages/patches/itk-snap-alt-glibc-compat.patch b/gnu/packages/patches/itk-snap-alt-glibc-compat.patch deleted file mode 100644 index 764c5da2c2..0000000000 --- a/gnu/packages/patches/itk-snap-alt-glibc-compat.patch +++ /dev/null @@ -1,22 +0,0 @@ -Retrieved from ALT Linux. -https://git.altlinux.org/tasks/273587/build/300/x86_64/srpm/itk-snap-3.8.0-alt6.src.rpm - -diff --git a/GUI/Qt/main.cxx b/GUI/Qt/main.cxx -index 576f7160..ceab92e6 100644 ---- a/GUI/Qt/main.cxx -+++ b/GUI/Qt/main.cxx -@@ -51,12 +51,13 @@ using namespace std; - #if defined (__unix__) || (defined (__APPLE__) && defined (__MACH__)) - - #include <signal.h> -+#include <string.h> - #include <execinfo.h> - - void SegmentationFaultHandler(int sig) - { - cerr << "*************************************" << endl; -- cerr << "ITK-SNAP: " << sys_siglist[sig] << endl; -+ cerr << "ITK-SNAP: " << strsignal(sig) << " (" << sigabbrev_np(sig) << ")" << endl; - cerr << "BACKTRACE: " << endl; - void *array[50]; - int nsize = backtrace(array, 50); |