home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume13 / perl / patches6-10 / patch10 next >
Encoding:
Internet Message Format  |  1988-01-30  |  3.2 KB

  1. Path: bbn.com!bbn!husc6!rutgers!ames!elroy!devvax!lroot
  2. From: lroot@devvax.JPL.NASA.GOV (The Superuser)
  3. Newsgroups: comp.sources.bugs
  4. Subject: perl 1.0 patch #10
  5. Summary: This is an official patch for perl 1.0.  Please apply it.
  6. Message-ID: <1188@devvax.JPL.NASA.GOV>
  7. Date: 30 Jan 88 17:25:46 GMT
  8. Organization: Jet Propulsion Laboratory, Pasadena, CA
  9. Lines: 84
  10.  
  11. System: perl version 1.0
  12. Patch #: 10
  13. Priority: LOW
  14. Subject: if your libc is in a strange place, Configure blows up
  15. From: Peter E. Yee <yee@trident.arc.nasa.gov>
  16.  
  17. Description:
  18.     There's a line in Configure that says libc=ans which should say
  19.     libc=$ans.  This only shows up if libc.a isn't in /lib.
  20.  
  21. Fix:    From rn, say "| patch -d DIR", where DIR is your perl source
  22.     directory.  Outside of rn, say "cd DIR; patch <thisarticle".
  23.     If you don't have the patch program, apply the following by hand,
  24.     or get patch.
  25.  
  26.     If patch indicates that patchlevel is the wrong version, you may need
  27.     to apply one or more previous patches, or the patch may already
  28.     have been applied.  See the patchlevel.h file to find out what has or
  29.     has not been applied.  In any event, don't continue with the patch.
  30.  
  31.     If you are missing previous patches they can be obtained from me:
  32.  
  33.     Larry Wall
  34.     lwall@jpl-devvax.jpl.nasa.gov
  35.  
  36.     If you send a mail message of the following form it will greatly speed
  37.     processing:
  38.  
  39.     Subject: Command
  40.     @SH mailpatch PATH perl 1.0 LIST
  41.            ^ note the c
  42.  
  43.     where PATH is a return path FROM ME TO YOU in Internet notation, and
  44.     LIST is the number of one or more patches you need, separated by spaces,
  45.     commas, and/or hyphens.  Saying 35- says everything from 35 to the end.
  46.  
  47.     You can also get the patches via anonymous FTP from
  48.     jpl-devvax.jpl.nasa.gov (128.149.8.43).
  49.  
  50. Index: patchlevel.h
  51. Prereq: 9
  52. 1c1
  53. < #define PATCHLEVEL 9
  54. ---
  55. > #define PATCHLEVEL 10
  56.  
  57. Index: Configure
  58. Prereq: 1.0.1.4
  59. *** Configure.old    Sat Jan 30 09:22:10 1988
  60. --- Configure    Sat Jan 30 09:22:13 1988
  61. ***************
  62. *** 8,14 ****
  63.   # and edit it to reflect your system.  Some packages may include samples
  64.   # of config.h for certain machines, so you might look for one of those.)
  65.   #
  66. ! # $Header: Configure,v 1.0.1.4 88/01/30 08:51:49 root Exp $
  67.   #
  68.   # Yes, you may rip this off to use in other distribution packages.
  69.   # (Note: this Configure script was generated automatically.  Rather than
  70. --- 8,14 ----
  71.   # and edit it to reflect your system.  Some packages may include samples
  72.   # of config.h for certain machines, so you might look for one of those.)
  73.   #
  74. ! # $Header: Configure,v 1.0.1.5 88/01/30 09:21:20 root Exp $
  75.   #
  76.   # Yes, you may rip this off to use in other distribution packages.
  77.   # (Note: this Configure script was generated automatically.  Rather than
  78. ***************
  79. *** 398,404 ****
  80.       ans=`loc libc.a blurfl/dyick $libpth`
  81.       if test -f $ans; then
  82.       echo "Your C library is in $ans, of all places."
  83. !     libc=ans
  84.       else
  85.       if test -f "$libc"; then
  86.           echo "Your C library is in $libc, like you said before."
  87. --- 398,404 ----
  88.       ans=`loc libc.a blurfl/dyick $libpth`
  89.       if test -f $ans; then
  90.       echo "Your C library is in $ans, of all places."
  91. !     libc=$ans
  92.       else
  93.       if test -f "$libc"; then
  94.           echo "Your C library is in $libc, like you said before."
  95.