Fix CFLAGS logic.

This commit is contained in:
Peter Eisentraut 2003-11-01 20:45:30 +00:00
parent f7e5e9d493
commit 0543af2f12
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
if test "$GCC" != yes ; then
case $host_os in
aix3.2.5 | aix4.1*) ;;
*) CFLAGS="-O2 -qlonglong";;
aix3.2.5 | aix4.1*)
CFLAGS="-O -qmaxmem=16384 -qsrcmsg"
;;
*)
CFLAGS="-O2 -qmaxmem=16384 -qsrcmsg -qlonglong"
;;
esac
CFLAGS="-O -qmaxmem=16384 -qsrcmsg"
fi