From 1a95478b8d340c8b6b9dbff4f38f9293388fd1a3 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Wed, 14 Aug 2019 14:56:21 +0200 Subject: Add pthread based, parallel block processor implementation Signed-off-by: David Oberhollenzer --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 19ee8d4..78ede8f 100644 --- a/configure.ac +++ b/configure.ac @@ -143,6 +143,10 @@ yes) AM_COND_IF([WITH_SELINUX], [], [AC_MSG_ERROR([cannot find selinux])]) ;; no) AM_CONDITIONAL([WITH_SELINUX], [false]) ;; esac +have_pthread="no" +AX_PTHREAD([have_pthread="yes"], []) +AM_CONDITIONAL([HAVE_PTHREAD], [test "x$have_pthread" != "xno"]) + ##### sanity check ##### have_compressor="no" -- cgit v1.2.3