summaryrefslogtreecommitdiff
path: root/graphics/plotutils/files/patch-libplot_z__defplot.c
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2003-08-10 06:34:37 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2003-08-10 06:34:37 +0000
commitce1f6608f852128aa0344f5c20f7b4e4585e3dbe (patch)
tree8feabac060bf39ad4ecd2896f9cb79d3274e2cab /graphics/plotutils/files/patch-libplot_z__defplot.c
parentUpdate to 2.1.0 (diff)
Fix build on -current
PR: 55351 Submitted by: Glenn Johnson <gjohnson@srrc.ars.usda.gov>
Notes
Notes: svn path=/head/; revision=86701
Diffstat (limited to 'graphics/plotutils/files/patch-libplot_z__defplot.c')
-rw-r--r--graphics/plotutils/files/patch-libplot_z__defplot.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/graphics/plotutils/files/patch-libplot_z__defplot.c b/graphics/plotutils/files/patch-libplot_z__defplot.c
new file mode 100644
index 000000000000..3d2291e2ac82
--- /dev/null
+++ b/graphics/plotutils/files/patch-libplot_z__defplot.c
@@ -0,0 +1,37 @@
+
+$FreeBSD$
+
+--- libplot/z_defplot.c.orig Thu Jun 8 23:12:29 2000
++++ libplot/z_defplot.c Thu Aug 7 11:48:12 2003
+@@ -132,13 +132,13 @@
+ _z_initialize ();
+ }
+
+-PNGPlotter::PNGPlotter (istream& in, ostream& out, ostream& err)
++PNGPlotter::PNGPlotter (std::istream& in, std::ostream& out, std::ostream& err)
+ : BitmapPlotter (in, out, err)
+ {
+ _z_initialize ();
+ }
+
+-PNGPlotter::PNGPlotter (ostream& out)
++PNGPlotter::PNGPlotter (std::ostream& out)
+ : BitmapPlotter (out)
+ {
+ _z_initialize ();
+@@ -161,13 +161,13 @@
+ _z_initialize ();
+ }
+
+-PNGPlotter::PNGPlotter (istream& in, ostream& out, ostream& err, PlotterParams &parameters)
++PNGPlotter::PNGPlotter (std::istream& in, std::ostream& out, std::ostream& err, PlotterParams &parameters)
+ : BitmapPlotter (in, out, err, parameters)
+ {
+ _z_initialize ();
+ }
+
+-PNGPlotter::PNGPlotter (ostream& out, PlotterParams &parameters)
++PNGPlotter::PNGPlotter (std::ostream& out, PlotterParams &parameters)
+ : BitmapPlotter (out, parameters)
+ {
+ _z_initialize ();