diff options
Diffstat (limited to 'hints/unicos.sh')
-rw-r--r-- | hints/unicos.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hints/unicos.sh b/hints/unicos.sh index 7579eed65a..111cbb9fc7 100644 --- a/hints/unicos.sh +++ b/hints/unicos.sh @@ -1,10 +1,13 @@ case `uname -r` in 6.1*) shellflags="-m+65536" ;; esac -optimize="-O1" +case "$optimize" in +'') optimize="-O1" ;; +esac d_setregid='undef' d_setreuid='undef' case "$usemymalloc" in -'') usemymalloc='y' ;; +'') usemymalloc='y' + ccflags="$ccflags -DNO_RCHECK" + ;; esac - |