diff options
author | adam <adam@pkgsrc.org> | 2011-03-14 08:06:52 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-03-14 08:06:52 +0000 |
commit | cec1bc7893881f4b1cd3653b23f1aef1ff7747c1 (patch) | |
tree | 5d2aa8dd2f6a11a651d342db9324b84419f53aaf /graphics/gnuplot/patches | |
parent | 685132e00802a3ed227066a25daa7c944b0023e4 (diff) | |
download | pkgsrc-cec1bc7893881f4b1cd3653b23f1aef1ff7747c1.tar.gz |
Changes 4.4.3:
* NEW Implement pan and zoom via mouse wheel.
* NEW set key maxcolumns N maxrows M
* NEW value("varname") returns the value of the named variable
* NEW encoding cp1251 - 8-bit Cyrillic
* CHANGE backport emf terminal driver from version 4.5
* FIX better estimation of latex string lengths
* FIX colorbar representation of discrete color palettes is pixel accurate
* FIX NaN initialization and tests working on more (all?) platforms
* FIX configuration script tests for readline+ncurses
* FIX prevent out-of-range boxes from creating degenerate ghosts on the border
* FIX missing alpha channel flag for pdfcairo terminal
* FIX font initialization in windows terminal
Diffstat (limited to 'graphics/gnuplot/patches')
-rw-r--r-- | graphics/gnuplot/patches/patch-af | 4 | ||||
-rw-r--r-- | graphics/gnuplot/patches/patch-ag | 38 |
2 files changed, 3 insertions, 39 deletions
diff --git a/graphics/gnuplot/patches/patch-af b/graphics/gnuplot/patches/patch-af index 63b59181c72..947b4f7f361 100644 --- a/graphics/gnuplot/patches/patch-af +++ b/graphics/gnuplot/patches/patch-af @@ -1,11 +1,11 @@ -$NetBSD: patch-af,v 1.2 2011/02/08 13:13:41 adam Exp $ +$NetBSD: patch-af,v 1.3 2011/03/14 08:06:53 adam Exp $ NetBSD editline keeps header files in "readline", not "editline". Same applies to DragonFly. --- configure.in.orig 2009-03-15 06:39:15.000000000 +0300 +++ configure.in 2009-09-14 17:35:06.000000000 +0400 -@@ -339,7 +339,7 @@ +@@ -352,7 +352,7 @@ if test "$ac_cv_lib_edit_readline" = yes; then AC_DEFINE(HAVE_LIBEDITLINE,1, [ Define if you are using the BSD editline library. ]) diff --git a/graphics/gnuplot/patches/patch-ag b/graphics/gnuplot/patches/patch-ag index 067454fbbbc..804594d1ff6 100644 --- a/graphics/gnuplot/patches/patch-ag +++ b/graphics/gnuplot/patches/patch-ag @@ -1,4 +1,4 @@ -$NetBSD: patch-ag,v 1.3 2011/02/08 13:13:41 adam Exp $ +$NetBSD: patch-ag,v 1.4 2011/03/14 08:06:53 adam Exp $ NetBSD editline keeps header files in "readline", not "editline". Same applies to DragonFly. @@ -17,42 +17,6 @@ Same applies to DragonFly. if test "x$ac_cv_header_editline_readline_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_EDITLINE_READLINE_H 1 -@@ -7381,7 +7381,7 @@ _ACEOF - - fi - -- if test "$ac_cv_lib_readline_rl_ding" == no; then -+ if test "$ac_cv_lib_readline_rl_ding" = no; then - - $as_echo "#define MISSING_RL_DING 1" >>confdefs.h - -@@ -7431,7 +7431,7 @@ _ACEOF - - fi - -- if test "$ac_cv_lib_readline_rl_forced_update_display" == no; then -+ if test "$ac_cv_lib_readline_rl_forced_update_display" = no; then - - $as_echo "#define MISSING_RL_FORCED_UPDATE_DISPLAY 1" >>confdefs.h - -@@ -7481,7 +7481,7 @@ _ACEOF - - fi - -- if test "$ac_cv_lib_readline_rl_reset_after_signal" == yes; then -+ if test "$ac_cv_lib_readline_rl_reset_after_signal" = yes; then - - $as_echo "#define HAVE_READLINE_RESET 1" >>confdefs.h - -@@ -7533,7 +7533,7 @@ _ACEOF - - fi - -- if test "$ac_cv_lib_readline_rl_complete_with_tilde_expansion" == no; then -+ if test "$ac_cv_lib_readline_rl_complete_with_tilde_expansion" = no; then - - $as_echo "#define MISSING_RL_TILDE_EXPANSION 1" >>confdefs.h - @@ -7662,7 +7662,9 @@ else if test -d $withval/lib; then LDFLAGS="$LDFLAGS -L$withval/lib" |