home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / lang / perl / 6924 < prev    next >
Encoding:
Internet Message Format  |  1992-11-10  |  1.8 KB

  1. Path: sparky!uunet!ogicse!decwrl!pa.dec.com!rdg.dec.com!fiveoh.ilo.dec.com!jim
  2. From: jim@fiveoh.ilo.dec.com (Jim Lawton)
  3. Newsgroups: comp.lang.perl
  4. Subject: Re: perl under Ultrix 4.3?
  5. Message-ID: <1992Nov10.154818.16002@rdg.dec.com>
  6. Date: 10 Nov 92 15:48:18 GMT
  7. Article-I.D.: rdg.1992Nov10.154818.16002
  8. References: <1992Oct29.162445.23551@eng.ufl.edu> <1cpjs4INNn3@early-bird.think.com> <1992Nov5.235228.1944@dale.ksc.nasa.gov> <1dchcrINNn07@ef2007.efhd.ford.com>
  9. Sender: news@rdg.dec.com (Mr News)
  10. Reply-To: jim@ilo.dec.com
  11. Organization: Digital Equipment Corporation
  12. Lines: 48
  13.  
  14.  
  15.  
  16. In article <1dchcrINNn07@ef2007.efhd.ford.com>, mjo@slee01.srl.ford.com (Mike O'Connor) writes:
  17. >Anyone built perl under Ultrix 4.3 with either gcc 2.3.1 or the
  18. >shipped cc?  Having some problems...
  19.  
  20. I've built PL35 on ULTRIX (RISC) 4.3 using cc. One thing was needed to get
  21. it to build. 4.3 needs the same hints as 4.2. In perl-4.035/hints/ultrix_4.sh
  22. you need to make the changes shown below. I've already sent this patch to Larry
  23. Wall.
  24.  
  25. Hope this solves your problem,
  26. /jim
  27.  
  28.  
  29. *** ultrix_4.sh    Thu Oct 22 10:51:02 1992
  30. --- ultrix_4.sh.dist    Wed Oct 21 18:10:05 1992
  31. ***************
  32. *** 7,13 ****
  33.   may fail if run under NFS.  Ignore the failure.
  34.   EOF
  35.       case "$tmp" in
  36. !     *4.2*|*4.3*) d_volatile=undef;;
  37.       esac
  38.   ;;
  39.   esac
  40. --- 7,13 ----
  41.   may fail if run under NFS.  Ignore the failure.
  42.   EOF
  43.       case "$tmp" in
  44. !     *4.2*) d_volatile=undef;;
  45.       esac
  46.   ;;
  47.   esac
  48. ***************
  49. *** 18,23 ****
  50.       toke_cflags='optimize="-g"'
  51.       ttoke_cflags='optimize="-g"'
  52.       ;;
  53. ! *4.2*|*4.3*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;;
  54.   esac
  55.   
  56. --- 18,23 ----
  57.       toke_cflags='optimize="-g"'
  58.       ttoke_cflags='optimize="-g"'
  59.       ;;
  60. ! *4.2*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;;
  61.   esac
  62.