source: trunk/third/perl/hints/unicosmk.sh @ 14545

Revision 14545, 776 bytes checked in by ghudson, 24 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r14544, which included commits to RCS files with non-trunk default branches.
Line 
1case "$optimize" in
2'') optimize="-O1" ;;
3esac
4d_setregid='undef'
5d_setreuid='undef'
6case "$usemymalloc" in
7'') usemymalloc='y'
8    ccflags="$ccflags -DNO_RCHECK"
9    ;;
10esac
11# If somebody ignores the Cray PATH.
12case ":$PATH:" in
13*:/opt/ctl/bin:*) ;;
14'') case "$cc" in
15    '') test -x /opt/ctl/bin/cc && cc=/opt/ctl/bin/cc ;;
16    esac
17    ;;
18esac
19# As of UNICOS/mk 2.0.5.24 the shm* are in libc but unimplemented
20# (an attempt to use them causes a runtime error)
21# XXX Configure probe for really functional shm*() is needed XXX
22if test "$d_shm" = ""; then
23    d_shmat=${d_shmat:-undef}
24    d_shmdt=${d_shmdt:-undef}
25    d_shmget=${d_shmget:-undef}
26    d_shmctl=${d_shmctl:-undef}
27    case "$d_shmat$d_shmctl$d_shmdt$d_shmget" in
28    *"undef"*) d_shm="$undef" ;;
29    esac
30fi
31
32
Note: See TracBrowser for help on using the repository browser.