cb00531136
- switch build to cmake for the webp build - we need the cmake finder code OBS-URL: https://build.opensuse.org/package/show/graphics/tiff?expand=0&rev=184
14 lines
855 B
Diff
14 lines
855 B
Diff
Index: tiff-4.6.0/libtiff/tiffiop.h
|
|
===================================================================
|
|
--- tiff-4.6.0.orig/libtiff/tiffiop.h
|
|
+++ tiff-4.6.0/libtiff/tiffiop.h
|
|
@@ -256,7 +256,7 @@ struct TIFFOpenOptions
|
|
#define TIFFWriteFile(tif, buf, size) \
|
|
((*(tif)->tif_writeproc)((tif)->tif_clientdata, (buf), (size)))
|
|
#define TIFFSeekFile(tif, off, whence) \
|
|
- ((*(tif)->tif_seekproc)((tif)->tif_clientdata, (off), (whence)))
|
|
+ ((tif)->tif_seekproc?((*(tif)->tif_seekproc)((tif)->tif_clientdata,(toff_t)(off),whence)):0)
|
|
#define TIFFCloseFile(tif) ((*(tif)->tif_closeproc)((tif)->tif_clientdata))
|
|
#define TIFFGetFileSize(tif) ((*(tif)->tif_sizeproc)((tif)->tif_clientdata))
|
|
#define TIFFMapFileContents(tif, paddr, psize) \
|