]> Savannah Git Hosting - gnulib.git/commitdiff
jit/cache: Fix configure error.
authorMarc Nieper-Wißkirchen <marc@nieper-wisskirchen.de>
Sat, 25 Nov 2023 19:58:31 +0000 (20:58 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 25 Nov 2023 19:58:31 +0000 (20:58 +0100)
* m4/valgrind-helper.m4: Unconditionally set support_valgrind.

ChangeLog
m4/valgrind-helper.m4

index 1834acd9dae408f464827ada0f3177fd2c23d831..6fab60c4f00d5ad0c3f92224ddcff95db82befa4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-11-25  Marc Nieper-Wißkirchen  <marc@nieper-wisskirchen.de>
+
+       jit/cache: Fix configure error.
+       * m4/valgrind-helper.m4: Unconditionally set support_valgrind.
+
 2023-11-24  Bruno Haible  <bruno@clisp.org>
 
        floorf, ceilf tests: Strengthen against compiler optimizations.
index 99c31030b9cada4d11622e206d707e4f63a850cb..dc72fb176a1fe5d55cceb7cdb3191c7cd267d32c 100644 (file)
@@ -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