From 27238dd64c07497f7e857384d925dcc5b3de540b Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Thu, 5 Jul 2001 17:40:05 +0000 Subject: [PATCH] configure-no-error-on-failure-to-find-pthreads-20010705 failure to find pthreads should be non-fatal --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index b5a320f3eb..6f44f30acb 100644 --- a/configure.in +++ b/configure.in @@ -178,7 +178,7 @@ if test "x$PTHREAD_LIBS" = xerror; then AC_CHECK_FUNC(pthread_attr_init, PTHREAD_LIBS="") fi if test "x$PTHREAD_LIBS" = xerror; then - AC_MSG_ERROR(*** Unable to locate working posix thread library ***) + AC_MSG_WARN(*** Unable to locate working posix thread library ***) fi AC_SUBST(PTHREAD_LIBS)