blob: bdd7b08cb8d8afb07439d402da9196d3e4781e70 (
plain)
1
2
3
4
5
6
7
8
9
|
if test "$GCC" = yes ; then
CFLAGS="$CFLAGS -pipe"
else
case $host_os in
aix3.2.5 | aix4.1*) ;;
*) CFLAGS="$CFLAGS -O2 -qlonglong";;
esac
CFLAGS="$CFLAGS -qmaxmem=16384 -qsrcmsg"
fi
|