From a3dcf9efdc1252638302fd456922340630ef0b60 Mon Sep 17 00:00:00 2001 From: crs Date: Thu, 16 Jan 2003 22:55:07 +0000 Subject: [PATCH] Fixed error in configure for Darwin. --- acinclude.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 5b397620..2ebdc27f 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -485,9 +485,9 @@ if test "x$acx_pthread_ok" = xyes; then AC_TRY_LINK([#include #include ], [pthread_kill(pthread_self(), SIGTERM);], - ok=yes, ok=unknown) + ok=yes, ok=no) AC_MSG_RESULT(${ok}) - if test x"$ok" != xno; then + if test x"$ok" = xyes; then AC_DEFINE(HAVE_PTHREAD_SIGNAL,1,[Define if you have \`pthread_sigmask\' and \`pthread_kill\' functions.]) fi