Import of pkgsrc-2014Q1
This commit is contained in:
@@ -1,15 +1,19 @@
|
||||
$NetBSD: patch-ac,v 1.2 2012/08/10 15:14:54 drochner Exp $
|
||||
$NetBSD: patch-ac,v 1.3 2014/03/25 23:19:19 asau Exp $
|
||||
|
||||
NetBSD editline keeps header files in "readline", not "editline".
|
||||
Same applies to DragonFly.
|
||||
FreeBSD requires additional header file to get access to history.
|
||||
|
||||
--- src/gp_hist.h.orig 2011-02-21 07:56:57.000000000 +0000
|
||||
+++ src/gp_hist.h
|
||||
@@ -70,7 +70,7 @@ extern long int gnuplot_history_size;
|
||||
@@ -70,7 +70,10 @@ extern long int gnuplot_history_size;
|
||||
* (almost) compatible readline replacement
|
||||
*/
|
||||
#if defined(HAVE_LIBEDITLINE)
|
||||
-# include <editline/readline.h>
|
||||
+# if defined(__FreeBSD__)
|
||||
+# include <readline/history.h>
|
||||
+# endif
|
||||
+# include <readline/readline.h>
|
||||
#endif
|
||||
|
||||
|
||||
19
graphics/gnuplot/patches/patch-docs_gnuplot.texi
Normal file
19
graphics/gnuplot/patches/patch-docs_gnuplot.texi
Normal file
@@ -0,0 +1,19 @@
|
||||
$NetBSD: patch-docs_gnuplot.texi,v 1.1 2013/07/09 08:50:34 wiz Exp $
|
||||
|
||||
Fix
|
||||
> ./gnuplot.texi:17653: raising the section level of @subsubsection which is too low
|
||||
seen with texinfo-5.1.
|
||||
|
||||
More complete fix in
|
||||
http://sourceforge.net/p/gnuplot/bugs/1226/
|
||||
|
||||
--- docs/gnuplot.texi.orig 2013-04-12 17:26:15.000000000 +0000
|
||||
+++ docs/gnuplot.texi
|
||||
@@ -17564,6 +17564,7 @@ if/else statements. See `if`.
|
||||
|
||||
@node complete_list_of_terminals, , Terminal_types, Terminal_types
|
||||
@section complete list of terminals
|
||||
+@subsection output formats
|
||||
|
||||
@c ?complete list of terminals
|
||||
@cindex terminal
|
||||
Reference in New Issue
Block a user