diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-06-27 03:42:03 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-06-27 03:42:03 +0000 |
commit | 04abfa9e2c0c9d03e04aa4ae550dce5b3002ad32 (patch) | |
tree | 6b5a1fafb97aedde305289d2c239c2b7534aa44e /graphics | |
parent | 500b39afc2b15bd066b8a7c064e698948eef2ab0 (diff) | |
download | ports-04abfa9e2c0c9d03e04aa4ae550dce5b3002ad32.tar.gz ports-04abfa9e2c0c9d03e04aa4ae550dce5b3002ad32.zip |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/tiff/Makefile | 1 | ||||
-rw-r--r-- | graphics/tiff/files/patch-tools_tiffset_c | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile index a7e2d996c250..587949dea468 100644 --- a/graphics/tiff/Makefile +++ b/graphics/tiff/Makefile @@ -9,6 +9,7 @@ PORTNAME= tiff PORTVERSION= 3.5.7 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ http://www.libtiff.org/ diff --git a/graphics/tiff/files/patch-tools_tiffset_c b/graphics/tiff/files/patch-tools_tiffset_c new file mode 100644 index 000000000000..65d890d38eb3 --- /dev/null +++ b/graphics/tiff/files/patch-tools_tiffset_c @@ -0,0 +1,21 @@ +$OpenBSD: patch-tools_tiffset_c,v 1.1 2003/04/15 15:30:52 avsm Exp $ +--- tools/tiffset.c.orig Mon Apr 14 17:03:27 2003 ++++ tools/tiffset.c Mon Apr 14 17:11:28 2003 +@@ -86,7 +86,7 @@ main(int argc, char* argv[]) + + if( id < 1 ) + { +- fprintf( stderr, "Field name %s not recognised.\n" ); ++ fprintf( stderr, "Field name %s not recognised.\n", argv[arg_index+1] ); + exit( -3 ); + } + +@@ -112,7 +112,7 @@ main(int argc, char* argv[]) + + if( id < 1 ) + { +- fprintf( stderr, "Field name %s not recognised.\n" ); ++ fprintf( stderr, "Field name %s not recognised.\n", argv[arg_index+1] ); + exit( -3 ); + } + |