Modified ld flags on SunOS changed -O2 to -O

because sun's compiler does not support -O2.

Kent
This commit is contained in:
2003-02-10 00:18:29 +00:00
parent 99a1f599d8
commit 06e8de765a

View File

@@ -66,7 +66,7 @@ elif ( test $UNAME = "Linux" ) then
LDFLAGS="-Bshareable"; LDFLAGS="-Bshareable";
elif ( test $UNAME = "SunOS" ) then elif ( test $UNAME = "SunOS" ) then
CC="cc"; CC="cc";
CFLAGS="-O2"; CFLAGS="-O";
LD="ld"; LD="ld";
LDFLAGS="-r"; LDFLAGS="-r";