Update Solaris thread flags, per Jim Seymour

This commit is contained in:
Bruce Momjian 2004-03-14 23:51:48 +00:00
parent 04226b6404
commit 64fe1fd239
1 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ esac
# tools/thread/thread_test must be run
if test "$GCC" = yes
then THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-mt"
then THREAD_CPPFLAGS="-D_POSIX_PTHREAD_SEMANTICS"
THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-mt -D_POSIX_PTHREAD_SEMANTICS"
THREAD_LIBS="-lpthread"
fi