summaryrefslogtreecommitdiff
path: root/TSRM/tsrm.m4
blob: 9f5c8001d85c2d2b617786f2a1f10d6937b1dbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dnl This file contains TSRM specific autoconf macros.

dnl
dnl TSRM_CHECK_PTHREADS
dnl
AC_DEFUN([TSRM_CHECK_PTHREADS],[
PTHREADS_CHECK

if test "$pthreads_working" != "yes"; then
  AC_MSG_ERROR(Your system seems to lack POSIX threads.)
fi

AC_DEFINE(PTHREADS, 1, Whether to use Pthreads)

AC_MSG_CHECKING(for POSIX threads)
AC_MSG_RESULT(yes)
])