mirror of
https://github.com/postgres/postgres.git
synced 2025-06-09 00:01:41 -04:00
18 lines
324 B
Plaintext
18 lines
324 B
Plaintext
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
|
|
|
|
if test "$GCC" != yes ; then
|
|
CC="$CC -Ae"
|
|
CFLAGS="$CFLAGS +O2"
|
|
fi
|
|
|
|
# Pick right test-and-set (TAS) code. We need out-of-line assembler
|
|
# when not using gcc.
|
|
case $host in
|
|
hppa*-*-hpux*)
|
|
if test "$GCC" != yes ; then
|
|
need_tas=yes
|
|
tas_file=hpux_hppa.s
|
|
fi
|
|
;;
|
|
esac
|