From b283403068463924e42fdb7397a27d689d16877e Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Thu, 6 Jan 2022 17:03:07 +0200 Subject: [PATCH 41/41] configure: Fix false positive for thread condition variable checking See osdn #43562 Signed-off-by: Marko Lindqvist --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 8de596d1c5..4a10b1a5ec 100644 --- a/configure.ac +++ b/configure.ac @@ -952,8 +952,8 @@ if test x$crosser != xyes && test "x$thread_impl" = "xnone" ; then [AC_DEFINE([FREECIV_HAVE_PTHREAD], [1], [Use pthreads as thread implementation]) thread_impl=pthreads AC_MSG_RESULT([pthreads]) - AC_DEFINE([FREECIV_HAVE_THREAD_COND], [1], [Has thread condition variable implementation])]) - thread_cond=true + AC_DEFINE([FREECIV_HAVE_THREAD_COND], [1], [Has thread condition variable implementation]) + thread_cond=true]) fi if test "x$thread_impl" = "xnone" ; then -- 2.34.1