mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
b757d49cb5
* PHP-7.4: Remove TSRM_BASIC_CHECKS
18 lines
346 B
Plaintext
18 lines
346 B
Plaintext
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)
|
|
])
|