We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb0b73c commit b72c1b9Copy full SHA for b72c1b9
src/template/unixware
@@ -1,12 +1,14 @@
1
if test "$GCC" = yes; then
2
CFLAGS=-O2
3
+ THREAD_CFLAGS="-pthread"
4
else
5
# the -Kno_host is temporary for a bug in the compiler. See -hackers
6
# discussion on 7-8/Aug/2003.
7
# when the 7.1.3UP3 or later compiler is out, we can do a version check.
8
CFLAGS='-O -Kinline,no_host'
9
+ THREAD_CFLAGS="-K pthread"
10
fi
11
12
SUPPORTS_THREADS=yes
-THREAD_CFLAGS="-D_REENTRANT -K pthread"
13
+THREAD_CFLAGS += -D_REENTRANT
14
NEED_REENTRANT_FUNC_NAMES=yes
0 commit comments