1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Make Solaris non-gcc thread flag "-mt" a compile flag, not a link flag.

This commit is contained in:
Bruce Momjian
2003-12-31 16:14:44 +00:00
parent be6c38b903
commit 8042c79fd1

View File

@ -11,8 +11,8 @@ esac
THREAD_SUPPORT=yes
NEED_REENTRANT_FUNCS=yes # 5.6 2003-09-13
THREAD_LIBS="-pthread"
if test "$GCC" != yes
then THREAD_LIBS="-mt $THREAD_LIBS"
then THREAD_CPPFLAGS="-mt"
fi
THREAD_LIBS="-pthread"