]> git.pld-linux.org Git - packages/perl-Imager.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Thu, 26 Apr 2007 21:49:51 +0000 (21:49 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    perl-Imager-tiff.patch -> 1.2

perl-Imager-tiff.patch [deleted file]

diff --git a/perl-Imager-tiff.patch b/perl-Imager-tiff.patch
deleted file mode 100644 (file)
index 51f4fe9..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
---- Imager-0.41/tiff.c.orig    2002-01-23 03:34:20.000000000 +0100
-+++ Imager-0.41/tiff.c 2003-10-25 19:13:41.560163392 +0200
-@@ -306,6 +306,14 @@
-   return im;
- }
-+static int _tiffMapProc(thandle_t h, tdata_t *b, toff_t *s)
-+{
-+      return 0;
-+}
-+static int _tiffUnmapProc(thandle_t h, tdata_t b, toff_t s)
-+{
-+}
-+
- /*
- =item i_readtiff_wiol(im, ig)
-@@ -334,8 +342,8 @@
-                      (TIFFSeekProc) comp_seek,
-                      (TIFFCloseProc) ig->closecb,
-                      ig->sizecb ? (TIFFSizeProc) ig->sizecb : (TIFFSizeProc) sizeproc,
--                     (TIFFMapFileProc) NULL,
--                     (TIFFUnmapFileProc) NULL);
-+                     (TIFFMapFileProc) _tiffMapProc,
-+                     (TIFFUnmapFileProc) _tiffUnmapProc);
-   
-   if (!tif) {
-     mm_log((1, "i_readtiff_wiol: Unable to open tif file\n"));
-@@ -383,9 +391,9 @@
-                      (TIFFReadWriteProc) ig->writecb,
-                      (TIFFSeekProc) comp_seek,
-                      (TIFFCloseProc) ig->closecb,
--                     (TIFFSizeProc) ig->sizecb,
--                     (TIFFMapFileProc) NULL,
--                     (TIFFUnmapFileProc) NULL);
-+                     ig->sizecb ? (TIFFSizeProc) ig->sizecb : (TIFFSizeProc) sizeproc,
-+                     (TIFFMapFileProc) _tiffMapProc,
-+                     (TIFFUnmapFileProc) _tiffUnmapProc);
-   
-   if (!tif) {
-     mm_log((1, "i_readtiff_wiol: Unable to open tif file\n"));
-@@ -802,9 +810,9 @@
-                      (TIFFReadWriteProc) ig->writecb,
-                      (TIFFSeekProc)      comp_seek,
-                      (TIFFCloseProc)     ig->closecb, 
--                     (TIFFSizeProc)      ig->sizecb,
--                     (TIFFMapFileProc)   NULL,
--                     (TIFFUnmapFileProc) NULL);
-+                     ig->sizecb ? (TIFFSizeProc) ig->sizecb : (TIFFSizeProc) sizeproc,
-+                     (TIFFMapFileProc)   _tiffMapProc,
-+                     (TIFFUnmapFileProc) _tiffUnmapProc);
-   
-@@ -862,9 +870,9 @@
-                      (TIFFReadWriteProc) ig->writecb,
-                      (TIFFSeekProc)      comp_seek,
-                      (TIFFCloseProc)     ig->closecb, 
--                     (TIFFSizeProc)      ig->sizecb,
--                     (TIFFMapFileProc)   NULL,
--                     (TIFFUnmapFileProc) NULL);
-+                     ig->sizecb ? (TIFFSizeProc) ig->sizecb : (TIFFSizeProc) sizeproc,
-+                     (TIFFMapFileProc)   _tiffMapProc,
-+                     (TIFFUnmapFileProc) _tiffUnmapProc);
-   
-@@ -918,9 +926,9 @@
-                      (TIFFReadWriteProc) ig->writecb,
-                      (TIFFSeekProc)      comp_seek,
-                      (TIFFCloseProc)     ig->closecb, 
--                     (TIFFSizeProc)      ig->sizecb,
--                     (TIFFMapFileProc)   NULL,
--                     (TIFFUnmapFileProc) NULL);
-+                     ig->sizecb ? (TIFFSizeProc) ig->sizecb : (TIFFSizeProc) sizeproc,
-+                     (TIFFMapFileProc)   _tiffMapProc,
-+                     (TIFFUnmapFileProc) _tiffUnmapProc);
-   
-@@ -973,9 +981,9 @@
-                      (TIFFReadWriteProc) ig->writecb,
-                      (TIFFSeekProc)      comp_seek,
-                      (TIFFCloseProc)     ig->closecb, 
--                     (TIFFSizeProc)      ig->sizecb,
--                     (TIFFMapFileProc)   NULL,
--                     (TIFFUnmapFileProc) NULL);
-+                     ig->sizecb ? (TIFFSizeProc) ig->sizecb : (TIFFSizeProc) sizeproc,
-+                     (TIFFMapFileProc)   _tiffMapProc,
-+                     (TIFFUnmapFileProc) _tiffUnmapProc);
-   
This page took 0.117297 seconds and 4 git commands to generate.