mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
12 lines
250 B
Plaintext
12 lines
250 B
Plaintext
if test "$GCC" != yes ; then
|
|
CC="$CC -Xa" # relaxed ISO C mode
|
|
CFLAGS="-O -v" # -v is like gcc -Wall
|
|
fi
|
|
|
|
THREAD_SUPPORT=yes
|
|
NEED_REENTRANT_FUNCS=yes # 5.6 2003-09-13
|
|
if test "$GCC" != yes
|
|
then THREAD_CPPFLAGS="-mt"
|
|
fi
|
|
THREAD_LIBS="-pthread"
|