Update OSF thread flags for non-gcc compiles.

This commit is contained in:
Bruce Momjian 2004-01-08 15:51:24 +00:00
parent 002cafe7a4
commit 177ca67095
1 changed files with 5 additions and 1 deletions

View File

@ -5,4 +5,8 @@ fi
THREAD_SUPPORT=yes
NEED_REENTRANT_FUNCS=no # 4.0 2003-09-13
THREAD_LIBS="-pthread"
if test "$GCC" = yes
then THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-pthread"
THREAD_LIBS="-lpthread"
fi