Fixed error in configure for Darwin.

This commit is contained in:
crs 2003-01-16 22:55:07 +00:00
parent 24c0b3fd32
commit a3dcf9efdc
1 changed files with 2 additions and 2 deletions

View File

@ -485,9 +485,9 @@ if test "x$acx_pthread_ok" = xyes; then
AC_TRY_LINK([#include <pthread.h> AC_TRY_LINK([#include <pthread.h>
#include <signal.h>], #include <signal.h>],
[pthread_kill(pthread_self(), SIGTERM);], [pthread_kill(pthread_self(), SIGTERM);],
ok=yes, ok=unknown) ok=yes, ok=no)
AC_MSG_RESULT(${ok}) 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.]) AC_DEFINE(HAVE_PTHREAD_SIGNAL,1,[Define if you have \`pthread_sigmask\' and \`pthread_kill\' functions.])
fi fi