add additional checking for checking compiler support of -pthread.

This commit is contained in:
jdunn%netscape.com 1999-04-27 23:20:01 +00:00
Родитель 2879fada95
Коммит 6d20884fce
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -750,7 +750,7 @@ then
echo 'int main() { return 0; }' | cat > conftest.c
${CC-cc} -pthread -o conftest conftest.c > conftest.out 2>&1
if test $? -eq 0; then
if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`"; then
if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" && test -z "`egrep -i '(error|incorrect)' conftest.out`" ; then
ac_cv_have_dash_pthread=yes
CFLAGS="$CFLAGS -pthread"
CXXFLAGS="$CXXFLAGS -pthread"