From 1bb31b311822e4263134685fa262181185ca75d9 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Fri, 1 Dec 2023 01:15:29 -0500 Subject: [PATCH] Stop using gnulib's flexmember module. The only thing we're actually using from this module is provided directly by Autoconf, via AC_C_FLEXIBLE_ARRAY_MEMBER, so we can just use that macro instead. --- configure.ac | 2 ++ m4/gnulib-cache.m4 | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index ebd7d4d..1b3a262 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,8 @@ DX_AUTOMAKE_COMPAT AC_PROG_CC_C99 gl_EARLY +AC_C_FLEXIBLE_ARRAY_MEMBER + LT_CONFIG_LTDL_DIR([libltdl]) LT_INIT([dlopen]) LTDL_INIT([nonrecursive]) diff --git a/m4/gnulib-cache.m4 b/m4/gnulib-cache.m4 index 5a3ed85..5159cac 100644 --- a/m4/gnulib-cache.m4 +++ b/m4/gnulib-cache.m4 @@ -40,7 +40,6 @@ # --macro-prefix=gl \ # --no-vc-files \ # copysignf \ -# flexmember \ # getopt-gnu \ # inline \ # ldexpf \ @@ -50,7 +49,6 @@ gl_LOCAL_DIR([]) gl_MODULES([ copysignf - flexmember getopt-gnu inline ldexpf -- 2.43.0