summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-29 10:21:42 +0100
committerDavid Seifert <soap@gentoo.org>2017-01-29 21:09:41 +0100
commit185c1c00f86fc01fc89af1c0170f5dba1795981c (patch)
tree92570cab808721984e970def0248b4bd729fb6ea /sci-visualization/gnuplot/files
parentsci-visualization/gle: remove unused patch (diff)
downloadgentoo-185c1c00f86fc01fc89af1c0170f5dba1795981c.tar.gz
gentoo-185c1c00f86fc01fc89af1c0170f5dba1795981c.tar.bz2
gentoo-185c1c00f86fc01fc89af1c0170f5dba1795981c.zip
sci-visualization/gnuplot: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3709
Diffstat (limited to 'sci-visualization/gnuplot/files')
-rw-r--r--sci-visualization/gnuplot/files/gnuplot-4.6.2-gdversion.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/sci-visualization/gnuplot/files/gnuplot-4.6.2-gdversion.patch b/sci-visualization/gnuplot/files/gnuplot-4.6.2-gdversion.patch
deleted file mode 100644
index a10e1cc81046..000000000000
--- a/sci-visualization/gnuplot/files/gnuplot-4.6.2-gdversion.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Gnuplot supports using fontconfig in gd terminals. There was a bug in
-gd-2.0.35 that prevented this from working; therefore the mechanism
-was disabled by testing the GD version. Gentoo has backported the fix
-to media-libs/gd-2.0.35-r3 so our test can be different.
-
-Patch by Bernardo Costa <bernardofpc@gmail.com>.
-Gentoo specific, not to be submitted upstream.
-https://bugs.gentoo.org/462996
-https://bugs.gentoo.org/363367
-
---- gnuplot-4.6.2-orig/term/gd.trm
-+++ gnuplot-4.6.2/term/gd.trm
-@@ -149,7 +149,7 @@
- /* Before version 2.0.36, the libgd function gdFTUseFontConfig() didn't */
- /* do what we need. Test for earlier versions and ignore it. */
- #ifdef GD_MAJOR_VERSION
--# if (GD_MINOR_VERSION > 0 || GD_RELEASE_VERSION > 35)
-+# if (GD_MINOR_VERSION > 0 || GD_RELEASE_VERSION >= 35)
- # define gdUseFontConfig(x) gdFTUseFontConfig(x)
- # endif
- #endif