blob: f0369c0be7b64ded0679dc26fe8880c0b6476a54 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# hints/ultrix_4.sh
# Last updated by Andy Dougherty <doughera@lafcol.lafayette.edu>
# Fri Feb 10 10:04:51 EST 1995
#
# Use Configure -Dcc=gcc to use gcc.
#
# 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
esac
# Compiler flags that depend on osversion:
case "$cc" in
*gcc*) ;;
*)
case "$osvers" in
*4.1*) ccflags="$ccflags -DLANGUAGE_C -Olimit 2900" ;;
*4.2*) ccflags="$ccflags -DLANGUAGE_C -Olimit 2900"
case "$myuname" in
*risc*) d_volatile=undef ;;
esac
;;
*4.3*) ccflags="$ccflags -std1 -DLANGUAGE_C -Olimit 2900" ;;
*) ccflags="$ccflags -std -Olimit 2900" ;;
esac
;;
esac
# Other settings that depend on $osvers:
case "$osvers" in
*4.1*) ;;
*4.2*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;;
*4.3*) ;;
*) ranlib='ranlib' ;;
esac
groupstype='int'
|