home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!ogicse!decwrl!pa.dec.com!rdg.dec.com!fiveoh.ilo.dec.com!jim
- From: jim@fiveoh.ilo.dec.com (Jim Lawton)
- Newsgroups: comp.lang.perl
- Subject: Re: perl under Ultrix 4.3?
- Message-ID: <1992Nov10.154818.16002@rdg.dec.com>
- Date: 10 Nov 92 15:48:18 GMT
- Article-I.D.: rdg.1992Nov10.154818.16002
- References: <1992Oct29.162445.23551@eng.ufl.edu> <1cpjs4INNn3@early-bird.think.com> <1992Nov5.235228.1944@dale.ksc.nasa.gov> <1dchcrINNn07@ef2007.efhd.ford.com>
- Sender: news@rdg.dec.com (Mr News)
- Reply-To: jim@ilo.dec.com
- Organization: Digital Equipment Corporation
- Lines: 48
-
-
-
- In article <1dchcrINNn07@ef2007.efhd.ford.com>, mjo@slee01.srl.ford.com (Mike O'Connor) writes:
- >Anyone built perl under Ultrix 4.3 with either gcc 2.3.1 or the
- >shipped cc? Having some problems...
-
- I've built PL35 on ULTRIX (RISC) 4.3 using cc. One thing was needed to get
- it to build. 4.3 needs the same hints as 4.2. In perl-4.035/hints/ultrix_4.sh
- you need to make the changes shown below. I've already sent this patch to Larry
- Wall.
-
- Hope this solves your problem,
- /jim
-
-
- *** ultrix_4.sh Thu Oct 22 10:51:02 1992
- --- ultrix_4.sh.dist Wed Oct 21 18:10:05 1992
- ***************
- *** 7,13 ****
- may fail if run under NFS. Ignore the failure.
- EOF
- case "$tmp" in
- ! *4.2*|*4.3*) d_volatile=undef;;
- esac
- ;;
- esac
- --- 7,13 ----
- may fail if run under NFS. Ignore the failure.
- EOF
- case "$tmp" in
- ! *4.2*) d_volatile=undef;;
- esac
- ;;
- esac
- ***************
- *** 18,23 ****
- toke_cflags='optimize="-g"'
- ttoke_cflags='optimize="-g"'
- ;;
- ! *4.2*|*4.3*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;;
- esac
-
- --- 18,23 ----
- toke_cflags='optimize="-g"'
- ttoke_cflags='optimize="-g"'
- ;;
- ! *4.2*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;;
- esac
-