annotate src/gdcm-1-nosecapi.patch @ 5531:eae508c12529

Add build rule for build-octave (bug #49503). * src/build-octave.mk: Add new build rule for build-octave which can be used for cross-building binary packages that depend on Octave as a build tool. * dist-files.mk: Add new file to list. * index.html: Add new package to list. * src/of-communications.mk, src/of-image.mk, src/of-mapping.mk, src/of-optiminterp.mk, src/of-sparsersb.mk, src/of-statistics.mk, src/of-windows.mk: Add optional dependency on build-octave. * configure.ac: Add new configure switch "--disable-system-octave" that is needed to build the build-octave package. * Makefile.in: Add variable "USE_SYSTEM_OCTAVE". Exclude build-octave from the default build tools and build it only if a package explicitly depends on it. Display warning about missing native Octave version only if necessary.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 08 Sep 2020 23:04:38 +0200
parents 15551fc621fa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3666
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
1 diff -ur gdcm-2.0.19.orig/Source/Common/gdcmException.h gdcm-2.0.19/Source/Common/gdcmException.h
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
2 --- gdcm-2.0.19.orig/Source/Common/gdcmException.h 2014-07-26 11:45:31 -0400
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
3 +++ gdcm-2.0.19/Source/Common/gdcmException.h 2014-07-26 11:57:11 -0400
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
4 @@ -14,6 +14,13 @@
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
5 #ifndef GDCMEXCEPTION_H
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
6 #define GDCMEXCEPTION_H
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
7
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
8 +#ifdef __MINGW32__
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
9 + #include <_mingw.h>
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
10 + #ifdef MINGW_HAS_SECURE_API
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
11 + #undef MINGW_HAS_SECURE_API
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
12 + #endif
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
13 +#endif
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
14 +
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
15 #include <cassert>
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
16 #include <cstdlib> // NULL
15551fc621fa gdcm: add patch for native ming
John Donoghue
parents:
diff changeset
17 #include <exception>