home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sources.misc
- From: cs62a12@wind.ucsd.edu (Mark Hanson)
- Subject: v33i057: icontact - perl script to create contact sheets of images, Patch01
- Message-ID: <1992Nov10.035655.26824@sparky.imd.sterling.com>
- X-Md4-Signature: b6f114107a8f50370d969968fc560f77
- Date: Tue, 10 Nov 1992 03:56:55 GMT
- Approved: kent@sparky.imd.sterling.com
-
- Submitted-by: cs62a12@wind.ucsd.edu (Mark Hanson)
- Posting-number: Volume 33, Issue 57
- Archive-name: icontact/patch01
- Environment: UNIX, perl, pbmplus
- Patch-To: icontact: Volume 33, Issue 30-31
-
- This patch takes icontact from version 1.3 to version 1.3.1. It fixes a
- problem with a missing semicolon at the end of a block. Perl version 4.035
- does not require semicolons at the end of blocks, but earlier versions do.
- I was using 4.035 to develop icontact and so I didn't catch the missing
- semicolon, but several other people using earlier versions of perl caught
- it and sent me mail about it. Thanks.
-
- To apply this patch, save this article in a file, cd to the directory with the
- original icontact-1.3 files and execute this command:
-
- patch < ThisFile
-
- mark
-
- diff -c 1.3/README 1.3.1/README
- *** 1.3/README Sat Nov 7 10:16:27 1992
- --- 1.3.1/README Sat Nov 7 10:25:17 1992
- ***************
- *** 1,6 ****
- ! icontact-1.3 (25oct92)
-
- ! This is the fourth release of icontact.
-
- New features include (look at the man page for specifics):
- - the colors of all the different parts of the contact sheets (label
- --- 1,6 ----
- ! icontact-1.3.1 (07nov92)
-
- ! This is the fourth release of icontact (patchlevel 1).
-
- New features include (look at the man page for specifics):
- - the colors of all the different parts of the contact sheets (label
- ***************
- *** 44,49 ****
- --- 44,51 ----
- to go to and from the ppm format with them.
-
- THANKS TO:
- + - Larry Wall (lwall@netlabs.com)
- + for perl.
- - Roger Hayes (roger.hayes@eng.sun.com)
- for sending me an implementation of the -W option.
- - Larry W. Virden (lwv26@cas.org)
- diff -c 1.3/icontact 1.3.1/icontact
- *** 1.3/icontact Sat Nov 7 10:16:29 1992
- --- 1.3.1/icontact Sat Nov 7 10:23:49 1992
- ***************
- *** 8,14 ****
- # software is provided "as is" without express or implied warranty.
-
- $program = 'icontact';
- ! $version = '1.3 (25oct92)';
- $copyright = 'Copyright (C) 1992';
- $author = 'Mark B. Hanson (cs62a12@wind.ucsd.edu)';
-
- --- 8,14 ----
- # software is provided "as is" without express or implied warranty.
-
- $program = 'icontact';
- ! $version = '1.3.1 (07nov92)';
- $copyright = 'Copyright (C) 1992';
- $author = 'Mark B. Hanson (cs62a12@wind.ucsd.edu)';
-
- ***************
- *** 386,392 ****
-
- if ($Nice) {
- unless ($Nice =~ /^-?\d+$/) {
- ! &fatal("your nice value must be an integer!")
- }
- if (($Nice < 0) && ($< != 0)) {
- &fatal("sorry, your nice value must be positive!");
- --- 386,392 ----
-
- if ($Nice) {
- unless ($Nice =~ /^-?\d+$/) {
- ! &fatal("your nice value must be an integer!");
- }
- if (($Nice < 0) && ($< != 0)) {
- &fatal("sorry, your nice value must be positive!");
- diff -c 1.3/icontact.1 1.3.1/icontact.1
- *** 1.3/icontact.1 Sat Nov 7 10:16:27 1992
- --- 1.3.1/icontact.1 Sat Nov 7 10:23:07 1992
- ***************
- *** 1,5 ****
- .nh
- ! .TH ICONTACT 1 "icontact\-1.3 (25oct92)"
- .SH NAME
- icontact \- create contact sheets from images of different formats
- .SH SYNOPSIS
- --- 1,5 ----
- .nh
- ! .TH ICONTACT 1 "icontact\-1.3.1 (07nov92)"
- .SH NAME
- icontact \- create contact sheets from images of different formats
- .SH SYNOPSIS
-
- exit 0 # Just in case...
-