mirror of
https://github.com/postgres/postgres.git
synced 2026-06-05 23:33:01 -04:00
7c1ff35410
calls with new or now-built-in versions. Make sure that all calls to AC_DEFINE have a third argument, for possible use of autoheader in the future.
11 lines
229 B
Plaintext
11 lines
229 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
|
|
CCC=xlC
|
|
fi # not GCC
|