home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sources / misc / 4062 < prev    next >
Encoding:
Text File  |  1992-11-09  |  3.7 KB  |  119 lines

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