2 # Begin pthreads checking.
4 # First, decide whether to use multithreading or not.
6 # Enable multithreading by default on systems where it is known
7 # to work well, and where debugging of multithreaded programs
11 AC_MSG_CHECKING(whether to build with thread support)
17 # Thread signals are broken on Solaris 2.6; they are sometimes
18 # delivered to the wrong thread.
30 *-sco-sysv*uw*|*-*-sysv*UnixWare*)
37 # NetBSD earlier than NetBSD 5.0 has poor pthreads.
38 # Don't use it by default.
43 # OpenBSD users have reported that named dumps core on
44 # startup when built with threads.
46 [*-freebsd[1234567].*])
47 # Threads are broken at least up to FreeBSD 4.11.
48 # FreeBSD 5, 6 and 7 we have never officially supported threads
54 # Thread signals do not work reliably on some versions of BSD/OS.
60 *-darwin[[123456789]].*)
68 AC_ARG_ENABLE(threads,
69 [ --enable-threads enable multithreading])
70 case "$enable_threads" in
78 # Use system-dependent default
81 AC_MSG_ERROR([--enable-threads takes yes or no])
95 # Search for / configure pthreads in a system-dependent fashion.
99 # We don't want to set -lpthread as that break
100 # the ability to choose threads library at final
101 # link time and is not valid for all architectures.
104 if test "X$GCC" = "Xyes"; then
107 AC_MSG_CHECKING(for gcc -pthread support);
108 AC_TRY_LINK([#include <pthread.h>],
109 [printf("%x\n", pthread_create);],
115 if test "X$PTHREAD" != "Xyes"; then
116 AC_CHECK_LIB(pthread, pthread_create,,
117 AC_CHECK_LIB(thr, thread_create,,
118 AC_CHECK_LIB(c_r, pthread_create,,
119 AC_CHECK_LIB(c, pthread_create,,
120 AC_MSG_ERROR("could not find thread libraries")))))
124 AC_CHECK_LIB(pthread, pthread_create,,
125 AC_CHECK_LIB(pthread, __pthread_create,,
126 AC_CHECK_LIB(pthread, __pthread_create_system,,
127 AC_CHECK_LIB(c_r, pthread_create,,
128 AC_CHECK_LIB(c, pthread_create,,
129 AC_MSG_ERROR("could not find thread libraries"))))))