blob: 9d2d6b81c1c4c5305556d6c44d15de20b5482cb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if test "$GCC" != yes ; then
CC="$CC -std"
CFLAGS="-O -ieee"
fi
THREAD_SUPPORT=yes
NEED_REENTRANT_FUNCS=no # 4.0 2003-09-13
if test "$GCC" = yes
then THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-pthread"
THREAD_LIBS="-lpthread"
fi
|