home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume33 / icontact / patch01 < prev    next >
Encoding:
Text File  |  1992-11-10  |  3.5 KB  |  113 lines

  1. Newsgroups: comp.sources.misc
  2. From: cs62a12@wind.ucsd.edu (Mark Hanson)
  3. Subject:  v33i057:  icontact - perl script to create contact sheets of images, Patch01
  4. Message-ID: <1992Nov10.035655.26824@sparky.imd.sterling.com>
  5. X-Md4-Signature: b6f114107a8f50370d969968fc560f77
  6. Date: Tue, 10 Nov 1992 03:56:55 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: cs62a12@wind.ucsd.edu (Mark Hanson)
  10. Posting-number: Volume 33, Issue 57
  11. Archive-name: icontact/patch01
  12. Environment: UNIX, perl, pbmplus
  13. Patch-To: icontact: Volume 33, Issue 30-31
  14.  
  15. This patch takes icontact from version 1.3 to version 1.3.1.  It fixes a
  16. problem with a missing semicolon at the end of a block.  Perl version 4.035
  17. does not require semicolons at the end of blocks, but earlier versions do.
  18. I was using 4.035 to develop icontact and so I didn't catch the missing
  19. semicolon, but several other people using earlier versions of perl caught
  20. it and sent me mail about it.  Thanks.
  21.  
  22. To apply this patch, save this article in a file, cd to the directory with the
  23. original icontact-1.3 files and execute this command:
  24.  
  25.         patch < ThisFile
  26.  
  27. mark
  28.  
  29. diff -c 1.3/README 1.3.1/README
  30. *** 1.3/README    Sat Nov  7 10:16:27 1992
  31. --- 1.3.1/README    Sat Nov  7 10:25:17 1992
  32. ***************
  33. *** 1,6 ****
  34. ! icontact-1.3 (25oct92)
  35.   
  36. ! This is the fourth release of icontact.
  37.   
  38.   New features include (look at the man page for specifics):
  39.     - the colors of all the different parts of the contact sheets (label
  40. --- 1,6 ----
  41. ! icontact-1.3.1 (07nov92)
  42.   
  43. ! This is the fourth release of icontact (patchlevel 1).
  44.   
  45.   New features include (look at the man page for specifics):
  46.     - the colors of all the different parts of the contact sheets (label
  47. ***************
  48. *** 44,49 ****
  49. --- 44,51 ----
  50.     to go to and from the ppm format with them.
  51.   
  52.   THANKS TO:
  53. +   - Larry Wall (lwall@netlabs.com)
  54. +     for perl.
  55.     - Roger Hayes (roger.hayes@eng.sun.com)
  56.       for sending me an implementation of the -W option.
  57.     - Larry W. Virden (lwv26@cas.org) 
  58. diff -c 1.3/icontact 1.3.1/icontact
  59. *** 1.3/icontact    Sat Nov  7 10:16:29 1992
  60. --- 1.3.1/icontact    Sat Nov  7 10:23:49 1992
  61. ***************
  62. *** 8,14 ****
  63.   # software is provided "as is" without express or implied warranty.
  64.   
  65.   $program = 'icontact';
  66. ! $version = '1.3 (25oct92)';
  67.   $copyright = 'Copyright (C) 1992';
  68.   $author = 'Mark B. Hanson (cs62a12@wind.ucsd.edu)';
  69.   
  70. --- 8,14 ----
  71.   # software is provided "as is" without express or implied warranty.
  72.   
  73.   $program = 'icontact';
  74. ! $version = '1.3.1 (07nov92)';
  75.   $copyright = 'Copyright (C) 1992';
  76.   $author = 'Mark B. Hanson (cs62a12@wind.ucsd.edu)';
  77.   
  78. ***************
  79. *** 386,392 ****
  80.   
  81.   if ($Nice) {
  82.       unless ($Nice =~ /^-?\d+$/) {
  83. !         &fatal("your nice value must be an integer!")
  84.       }
  85.       if (($Nice < 0) && ($< != 0)) {
  86.           &fatal("sorry, your nice value must be positive!");
  87. --- 386,392 ----
  88.   
  89.   if ($Nice) {
  90.       unless ($Nice =~ /^-?\d+$/) {
  91. !         &fatal("your nice value must be an integer!");
  92.       }
  93.       if (($Nice < 0) && ($< != 0)) {
  94.           &fatal("sorry, your nice value must be positive!");
  95. diff -c 1.3/icontact.1 1.3.1/icontact.1
  96. *** 1.3/icontact.1    Sat Nov  7 10:16:27 1992
  97. --- 1.3.1/icontact.1    Sat Nov  7 10:23:07 1992
  98. ***************
  99. *** 1,5 ****
  100.   .nh
  101. ! .TH ICONTACT 1 "icontact\-1.3 (25oct92)"
  102.   .SH NAME
  103.   icontact \- create contact sheets from images of different formats
  104.   .SH SYNOPSIS
  105. --- 1,5 ----
  106.   .nh
  107. ! .TH ICONTACT 1 "icontact\-1.3.1 (07nov92)"
  108.   .SH NAME
  109.   icontact \- create contact sheets from images of different formats
  110.   .SH SYNOPSIS
  111.  
  112. exit 0 # Just in case...
  113.