blob: 654a6a1e05dacaec888e9534024bdfa1c10d0828 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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 "$osvers" in
*4.2*) d_volatile=undef;;
esac
;;
esac
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.3*) ccflags="$ccflags -std1 -DLANGUAGE_C -Olimit 2900"
;;
*4*) ccflags="$ccflags -std -Olimit 2900"
ranlib='ranlib'
;;
esac
groupstype='int'
|