From 81d99afd15b72a0b5a31dadeb7ce507ec4864664 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Wed, 6 Dec 2023 00:33:06 -0500 Subject: [PATCH] Explicitly require gnulib stdbool module. It seems that updating gnulib has caused this to not always be pulled in, in particular the header is no longer generated on HP-UX 11, leading to build failures. --- m4/gnulib-cache.m4 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/m4/gnulib-cache.m4 b/m4/gnulib-cache.m4 index e06a0a7..870a647 100644 --- a/m4/gnulib-cache.m4 +++ b/m4/gnulib-cache.m4 @@ -48,6 +48,7 @@ # inttypes-incomplete \ # lock \ # readline \ +# stdbool \ # tls # Specification in the form of a few gnulib-tool.m4 macro invocations: @@ -60,6 +61,7 @@ gl_MODULES([ inttypes-incomplete lock readline + stdbool tls ]) gl_AVOID([gperf std-gnu11]) -- 2.43.2