Fix CFLAGS logic.

This commit is contained in:
Peter Eisentraut 2003-11-01 20:45:30 +00:00
parent f7e5e9d493
commit 0543af2f12

View File

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