summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2022-07-28 19:35:48 +0200
committerUlrich Müller <ulm@gentoo.org>2022-07-28 19:37:23 +0200
commit9fb85b467b6f9e1d65538305262787be6f2d1f3b (patch)
treebef521d3aff6c1afb8b2be1d3cdcc5f8d7dbaf85 /sci-visualization/gnuplot/files/gnuplot-5.4.2-signed-char.patch
parentsci-visualization/gnuplot: add 5.4.4 (diff)
downloadgentoo-9fb85b467b6f9e1d65538305262787be6f2d1f3b.tar.gz
gentoo-9fb85b467b6f9e1d65538305262787be6f2d1f3b.tar.bz2
gentoo-9fb85b467b6f9e1d65538305262787be6f2d1f3b.zip
sci-visualization/gnuplot: drop 5.4.2-r1
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'sci-visualization/gnuplot/files/gnuplot-5.4.2-signed-char.patch')
-rw-r--r--sci-visualization/gnuplot/files/gnuplot-5.4.2-signed-char.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/sci-visualization/gnuplot/files/gnuplot-5.4.2-signed-char.patch b/sci-visualization/gnuplot/files/gnuplot-5.4.2-signed-char.patch
deleted file mode 100644
index 091dbbc88d8a..000000000000
--- a/sci-visualization/gnuplot/files/gnuplot-5.4.2-signed-char.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-char defaults to unsigned on ARM, causing a test failure.
-Patch from upstream.
-https://bugs.gentoo.org/811927
-https://sourceforge.net/p/gnuplot/bugs/2467/
-
---- a/src/marching_cubes.h
-+++ b/src/marching_cubes.h
-@@ -58,7 +58,7 @@ static const short cube_edge_flags[256]=
- First official public domain release
- Version 3.00 dated 8-6-94
- */
--static char triangle_table[256][13]=
-+static signed char triangle_table[256][13]=
- {
- {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
- { 8, 3, 0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
---- a/src/qt_table.h
-+++ b/src/qt_table.h
-@@ -10,7 +10,7 @@
- * collapsed them into quadrangles.
- * So there is room for improvement in this table.
- */
--static char qt_table[256][13] =
-+static signed char qt_table[256][13] =
- {
- { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1},
- { 8, 3, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1},