mirror of
https://github.com/postgres/postgres.git
synced 2026-06-02 13:58:10 -04:00
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
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
|