BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
[p5sagit/p5-mst-13.2.git] / hints / unicos.sh
CommitLineData
68decaef 1case `uname -r` in
26.1*) shellflags="-m+65536" ;;
3esac
c4f23d77 4case "$optimize" in
a20e3af3 5# If we used fastmd (the default) integer values would be limited to 43 bits.
214f2c7f 6# --Mark P. Lutz
a20e3af3 7'') optimize="$optimize -h nofastmd" ;;
8bda1795 8esac
a20e3af3 9# The default is to die on math overflows with an runtime error.
10# Let's not do that. --jhi
45ff97fd 11ccflags="$ccflags -h matherror=errno"
214f2c7f 12# Avoid an optimizer bug where a volatile variables
13# isn't correctly saved and restored --Mark P. Lutz
14pp_ctl_cflags='ccflags="$ccflags -h scalar0 -h vector0"'
693762b4 15case "$usemymalloc" in
214f2c7f 16'') # The perl malloc.c SHOULD work says Ilya.
8bda1795 17 # But for the time being (5.004_68), alas, it doesn't. --jhi
5283c38d 18 # usemymalloc='y'
19 # ccflags="$ccflags -DNO_RCHECK"
20 usemymalloc='n'
c4f23d77 21 ;;
693762b4 22esac
e1f2cf02 23# Configure gets fooled for some reason. There is no getpgid().
24d_getpgid='undef'
214f2c7f 25# These exist but do not really work.
26d_setregid='undef'
27d_setreuid='undef'