Commit 77f14000 authored by Bruce Momjian's avatar Bruce Momjian

Fix Solaris thread build settings for non-gcc compilers.

parent 4f913efe
......@@ -11,8 +11,9 @@ esac
THREAD_SUPPORT=yes
NEED_REENTRANT_FUNCS=yes # 5.6 2003-09-13
if test "$GCC" != yes
then THREAD_CPPFLAGS="-mt"
if test "$GCC" = yes
then THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-mt"
THREAD_LIBS="-lpthread"
fi
THREAD_LIBS="-pthread"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment