mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-24 15:26:59 +08:00
9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
if test "$GCC" = yes ; then
|
|
CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
|
|
CFLAGS="-O2"
|
|
else
|
|
CC="$CC -Ae"
|
|
CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
|
|
CFLAGS="+O2"
|
|
fi
|