mirror of
https://github.com/postgres/postgres.git
synced 2025-12-09 02:08:45 +03:00
11 lines
203 B
Plaintext
11 lines
203 B
Plaintext
if test "$GCC" != yes ; then
|
|
case $host_os in
|
|
aix3.2.5 | aix4.1*)
|
|
CFLAGS="-O -qmaxmem=16384 -qsrcmsg"
|
|
;;
|
|
*)
|
|
CFLAGS="-O2 -qmaxmem=16384 -qsrcmsg -qlonglong"
|
|
;;
|
|
esac
|
|
fi
|