summaryrefslogtreecommitdiff
path: root/graphics/gnuplot/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2017-06-19 21:10:00 +0000
committerwiz <wiz@pkgsrc.org>2017-06-19 21:10:00 +0000
commit29a0ccb5595a3f2939c56c6ad8ee1f627ae430e7 (patch)
treec80e3622fd7bc01269048313ffad19c039c7644d /graphics/gnuplot/patches
parent590e08720c3a0d337883a67434e46f51d73e2150 (diff)
downloadpkgsrc-29a0ccb5595a3f2939c56c6ad8ee1f627ae430e7.tar.gz
Updated gnuplot to 5.0.6.
Changes in 5.0.6 ================ * NEW command 'set micro' enables encoding-specific char for gprintf %c format * NEW command 'set datafile missing NaN' treats invalid data as if it were missing * NEW backport updated svg/domterm terminal from development version * CHANGE - start/end limits in nested iterations are reevaluated dynamically * CHANGE - revised adjustment of x2label and plot title when x2tics are present * CHANGE - mark non-free pdf terminal DEPRECATED (to be removed in release 5.2) * CHANGE - allow fractional font sizes for gdlib terminals * CHANGE - do not allow inverted R axis (requires support not backported from 5.1) * CHANGE - allow pointinterval property in 'with lp' for splot as well as for plot * CHANGE - "linewidth <lw>" is accepted as a terminal option for aquaterm, qt, wxt * CHANGE - spline segments outside xrange are ignored rather than treated as errors * FIX assignment of x/y dimensions in "binary record=(a,b) ... with image" * FIX wxt - multithreaded wxt was faulting during resize (mutex lock failure) * FIX windows - timed pause only worked for intervals < 1 second * FIX Front/back layering of border+grid lines was not always correct in hidden3d * FIX "set pm3d depthorder interpolate N,M" memory allocation failure * FIX aquaterm failed to honor request to disable enhanced text markup * FIX save and show commands failed to list linecolor for lines with "lt -1" * FIX the "missing" data flag is honored by "using ($n)" as it is for "using n" * FIX error reporting of line number inside a bracketed clause * FIX gnuplot_x11: possible fix for sporadic use-after-free error * FIX initialization of hidden3d structures for splot with dots * FIX track arrowhead properties in hidden3d mode * FIX tracking of NaN values from function evaluated during binary data input * FIX 3D rotation does not clobber hidden/visible status of plots
Diffstat (limited to 'graphics/gnuplot/patches')
-rw-r--r--graphics/gnuplot/patches/patch-aa13
1 files changed, 0 insertions, 13 deletions
diff --git a/graphics/gnuplot/patches/patch-aa b/graphics/gnuplot/patches/patch-aa
deleted file mode 100644
index 15048a0c746..00000000000
--- a/graphics/gnuplot/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.10 2012/08/10 15:14:54 drochner Exp $
-
---- src/stdfn.h.orig 2011-09-21 11:43:50.000000000 +0000
-+++ src/stdfn.h
-@@ -349,7 +349,7 @@ size_t strnlen __PROTO((const char *str,
- #endif
-
- /* sleep delay time, where delay is a double value */
--#if defined(HAVE_USLEEP)
-+#if 0 /*defined(HAVE_USLEEP)*/
- # define GP_SLEEP(delay) usleep((unsigned int) ((delay)*1e6))
- # ifndef HAVE_SLEEP
- # define HAVE_SLEEP