diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-01-18 02:27:49 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-01-18 02:27:49 +0000 |
commit | f4cb4c40de81ad9c5a8e775c2298ec5a52130124 (patch) | |
tree | bad0204337c331cde841254c428d1a6ebee231a2 /hints/ultrix_4.sh | |
parent | 3edbfbe5ecbb7e6fb99acc874379580a458f3cff (diff) | |
download | perl-f4cb4c40de81ad9c5a8e775c2298ec5a52130124.tar.gz |
perl 5.000d : [hint file updates]
This patch consolidates most of the hint file updates I've been
collecting since perl5.000's release. Some of the updates don't make
any sense until you also apply the Configure patches in patch.0g.
(A few late arrivals are also in patch.0g.)
Diffstat (limited to 'hints/ultrix_4.sh')
-rw-r--r-- | hints/ultrix_4.sh | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/hints/ultrix_4.sh b/hints/ultrix_4.sh index c7a8c2cfa0..654a6a1e05 100644 --- a/hints/ultrix_4.sh +++ b/hints/ultrix_4.sh @@ -1,23 +1,31 @@ -optimize=-g -tmp=`(uname -a) 2>/dev/null` -case "$tmp" in -*RISC*) cat <<EOF +# hints/ultrix_4.sh +# Last updated by Andy Dougherty <doughera@lafcol.lafayette.edu> +# Wed Nov 2 13:41:14 EST 1994 +# +# I don't know if -g is really needed. (AD) +case "$optimize" in +'') optimize=-g ;; +esac +case "$myuname" in +*risc*) cat <<EOF Note that there is a bug in some versions of NFS on the DECStation that may cause utime() to work incorrectly. If so, regression test io/fs may fail if run under NFS. Ignore the failure. EOF - case "$tmp" in + case "$osvers" in *4.2*) d_volatile=undef;; esac -;; + ;; esac -case "$tmp" in +case "$osvers" in *4.1*) ccflags="$ccflags -DLANGUAGE_C -Olimit 2900" ;; *4.2*) ccflags="$ccflags -DLANGUAGE_C -Olimit 2900" libswanted=`echo $libswanted | sed 's/ malloc / /'` ;; -*4.4*) ccflags="$ccflags -std -Olimit 2900" +*4.3*) ccflags="$ccflags -std1 -DLANGUAGE_C -Olimit 2900" + ;; +*4*) ccflags="$ccflags -std -Olimit 2900" ranlib='ranlib' ;; esac |