blob: ab0203bec6180b295d89ab412d5a2b4b5917fdc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
case `uname -r` in
6.1*) shellflags="-m+65536" ;;
esac
case "$optimize" in
'') optimize="-O1" ;;
esac
d_setregid='undef'
d_setreuid='undef'
case "$usemymalloc" in
'') # The perl malloc.c SHOULD work says Ilya.
# But for the time being (5.004_68), alas, it doesn't.
# usemymalloc='y'
# ccflags="$ccflags -DNO_RCHECK"
usemymalloc='n'
;;
esac
|