From 3f217248f401a8486b52f7cdef5fd24ad9ce7d73 Mon Sep 17 00:00:00 2001 From: Ben Olden-Cooligan Date: Thu, 11 Jan 2024 20:20:47 -0800 Subject: [PATCH] Always use pthreads for macOS https://gitlab.com/sane-project/backends/-/issues/153 --- acinclude.m4 | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 71e22c8d4..90af48dd8 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -248,8 +248,16 @@ AC_DEFUN([SANE_CHECK_PTHREAD], AC_DEFINE(PTHREAD_T_IS_INTEGER, 1, [Define if pthread_t is integer.]) else - # Until the sanei_thread implementation is fixed. - use_pthread=no + case "$host_os" in + darwin*) + # Always use pthreads on macOS + use_pthread=yes + ;; + *) + # Until the sanei_thread implementation is fixed. + use_pthread=no + ;; + esac fi if test "$have_pthread" = "yes" ; then