diff options
author | kris <kris@FreeBSD.org> | 2003-06-27 11:42:03 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-06-27 11:42:03 +0800 |
commit | d98a4f5965749d604df54efaff4ba3c809464855 (patch) | |
tree | 6390eb045dd6f98f55ca5ff6b3c5861e689df397 /graphics | |
parent | 00bf38a220cda7c3aa3e704d0894aeec035295f0 (diff) | |
download | freebsd-ports-gnome-d98a4f5965749d604df54efaff4ba3c809464855.tar.gz freebsd-ports-gnome-d98a4f5965749d604df54efaff4ba3c809464855.tar.zst freebsd-ports-gnome-d98a4f5965749d604df54efaff4ba3c809464855.zip |
Fix incomplete format string and bump PORTREVISION
Obtained from: OpenBSD
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 ); + } + |