mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
9 lines
219 B
Text
9 lines
219 B
Text
if test "$GCC" = yes ; then
|
|
CFLAGS='-O2 -pipe'
|
|
else # not GCC
|
|
CFLAGS='-O2 -qmaxmem=16384 -qsrcmsg -qlonglong'
|
|
case $host_os in
|
|
aix3.2.5 | aix4.1*)
|
|
CFLAGS='-qmaxmem=16384 -qsrcmsg' ;;
|
|
esac
|
|
fi # not GCC
|