summaryrefslogtreecommitdiff
path: root/sci-mathematics/octave/files/octave-4.4.0-imagemagick.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-06-13 10:39:22 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-06-13 10:39:22 +0100
commit9452a6e87b6c2c70513bc47a2470bf9f1168920e (patch)
tree8ac67e26b45f34d71c5aab3621813b100a0d5f00 /sci-mathematics/octave/files/octave-4.4.0-imagemagick.patch
parentf516638b7fe9592837389826a6152a7e1b251c54 (diff)
gentoo resync : 13.06.2020
Diffstat (limited to 'sci-mathematics/octave/files/octave-4.4.0-imagemagick.patch')
-rw-r--r--sci-mathematics/octave/files/octave-4.4.0-imagemagick.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/sci-mathematics/octave/files/octave-4.4.0-imagemagick.patch b/sci-mathematics/octave/files/octave-4.4.0-imagemagick.patch
deleted file mode 100644
index 2aa6e5b9d8c6..000000000000
--- a/sci-mathematics/octave/files/octave-4.4.0-imagemagick.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/libinterp/corefcn/__magick_read__.cc 2018-05-22 12:25:37.688173855 +0200
-+++ a/libinterp/corefcn/__magick_read__.cc.new 2018-05-22 12:32:51.475172200 +0200
-@@ -817,10 +817,19 @@
- // depth is 8, there's a good chance that we will be limited. It
- // is also the GraphicsMagick recommended setting and the default
- // for ImageMagick.
-+#ifdef QuantumDepth
- if (QuantumDepth < 16)
-+#else
-+ using namespace Magick;
-+ if (MAGICKCORE_QUANTUM_DEPTH < 16)
-+#endif
- warning_with_id ("Octave:GraphicsMagick-Quantum-Depth",
- "your version of %s limits images to %d bits per pixel\n",
-+#ifdef QuantumDepth
- MagickPackageName, QuantumDepth);
-+#else
-+ MagickPackageName, MAGICKCORE_QUANTUM_DEPTH);
-+#endif
-
- initialized = true;
- }