]> git.pld-linux.org Git - packages/plotutils.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 14 May 2006 19:21:16 +0000 (19:21 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    plotutils-c++.patch -> 1.2

plotutils-c++.patch [deleted file]

diff --git a/plotutils-c++.patch b/plotutils-c++.patch
deleted file mode 100644 (file)
index 82a9475..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
---- plotutils-2.4.1/libplot/g_write.c~ Fri May 19 18:10:01 2000
-+++ plotutils-2.4.1/libplot/g_write.c  Mon Nov 26 17:17:25 2001
-@@ -40,7 +40,7 @@
-     }
- #ifdef LIBPLOTTER
-   else if (data->outstream)
--    data->outstream->write(c, n);
-+    data->outstream->write((const char *)c, n);
- #endif
- }
---- plotutils-2.4.1/libplot/i_rle.c~   Sun Jun 27 18:58:10 1999
-+++ plotutils-2.4.1/libplot/i_rle.c    Mon Nov 26 18:33:37 2001
-@@ -78,7 +78,7 @@
-   else if (rle->outstream)
-     {
-       rle->outstream->put ((unsigned char)(rle->oblen));
--      rle->outstream->write (&(rle->oblock[0]), rle->oblen);
-+      rle->outstream->write ((const char *)&(rle->oblock[0]), rle->oblen);
-     }
- #endif  
---- plotutils-2.4.1/libplot/n_write.c~ Fri Jun 16 07:42:13 2000
-+++ plotutils-2.4.1/libplot/n_write.c  Mon Nov 26 19:39:34 2001
-@@ -208,7 +208,7 @@
-                 linebuf[pos++] = '0';
-               if (pos >= MAX_PBM_PIXELS_PER_LINE || i == (width - 1))
-                 {
--                  stream->write (linebuf, pos);
-+                  stream->write ((const char *)linebuf, pos);
-                   stream->put ('\n');
-                   pos = 0;
-@@ -253,7 +253,7 @@
-                 rowbuf[bytecount++] = outbyte;
-               }
-             /* emit row of bytes */
--            stream->write (rowbuf, bytecount);
-+            stream->write ((const char *)rowbuf, bytecount);
-           }
-         free (rowbuf);
-@@ -366,7 +366,7 @@
-               num_pixels++;
-               if (num_pixels >= MAX_PGM_PIXELS_PER_LINE || i == (width - 1))
-                 {
--                  stream->write (linebuf, pos);
-+                  stream->write ((const char *)linebuf, pos);
-                   stream->put ('\n');
-                   num_pixels = 0;
-@@ -392,7 +392,7 @@
-           {
-             for (i = 0; i < width; i++)
-               rowbuf[i] = pixmap[j][i].u.rgb[0];
--            stream->write (rowbuf, width);
-+            stream->write ((const char *)rowbuf, width);
-           }
-         free (rowbuf);
-       }
-@@ -514,7 +514,7 @@
-               num_pixels++;
-               if (num_pixels >= MAX_PPM_PIXELS_PER_LINE || i == (width - 1))
-                 {
--                  stream->write (linebuf, pos);
-+                  stream->write ((const char *)linebuf, pos);
-                   stream->put ('\n');
-                   num_pixels = 0;
-@@ -542,7 +542,7 @@
-             for (i = 0; i < width; i++)
-               for (component = 0; component < 3; component++)
-                 rowbuf[3 * i + component] = pixmap[j][i].u.rgb[component];
--            stream->write (rowbuf, 3 * width);
-+            stream->write ((const char *)rowbuf, 3 * width);
-           }
-         free (rowbuf);
-       }
---- plotutils-2.4.1/libplot/z_write.c~ Tue Jun 20 06:34:42 2000
-+++ plotutils-2.4.1/libplot/z_write.c  Mon Nov 26 20:34:35 2001
-@@ -484,7 +484,7 @@
-   ostream *stream;
-   stream = (ostream *)png_get_io_ptr (png_ptr);
--  stream->write (data, length);
-+  stream->write ((const char *)data, length);
- }
- static void 
This page took 0.300507 seconds and 4 git commands to generate.