From 9a463a8de15461076ddccc70e36e2915d9d24ab0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc=20Nieper-Wi=C3=9Fkirchen?= Date: Sat, 25 Nov 2023 20:58:31 +0100 Subject: [PATCH] jit/cache: Fix configure error. * m4/valgrind-helper.m4: Unconditionally set support_valgrind. --- ChangeLog | 5 +++++ m4/valgrind-helper.m4 | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1834acd9da..6fab60c4f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023-11-25 Marc Nieper-Wißkirchen + + jit/cache: Fix configure error. + * m4/valgrind-helper.m4: Unconditionally set support_valgrind. + 2023-11-24 Bruno Haible floorf, ceilf tests: Strengthen against compiler optimizations. diff --git a/m4/valgrind-helper.m4 b/m4/valgrind-helper.m4 index 99c31030b9..dc72fb176a 100644 --- a/m4/valgrind-helper.m4 +++ b/m4/valgrind-helper.m4 @@ -1,4 +1,4 @@ -# valgrind-helper.m4 serial 2 +# valgrind-helper.m4 serial 3 dnl Copyright (C) 2023 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -17,7 +17,8 @@ AC_DEFUN_ONCE([gl_VALGRIND_HELPER], else support_valgrind=0 fi - ]) + ], + [support_valgrind=0]) if test $support_valgrind = 1; then AC_CHECK_HEADERS([valgrind/valgrind.h]) if test $ac_cv_header_valgrind_valgrind_h != yes; then -- 2.39.5