From 7f55f059e2ec0a914e5cc2604235852d0444e2e7 Mon Sep 17 00:00:00 2001 From: Leandro Nini Date: Sun, 7 Jan 2024 13:25:19 +0100 Subject: [PATCH] Really fix build with autoconf-2.72 (#29) See https://github.com/libsidplayfp/libsidplayfp/commit/2b1b41beb5099d5697e3f8416d78f27634732a9e --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 49c1f45..ac6a69c 100644 --- a/configure.ac +++ b/configure.ac @@ -29,12 +29,12 @@ dnl Use C++ for tests. AC_LANG([C++]) AX_CXX_COMPILE_STDCXX_17([noext], [optional]) -AS_IF([test $ax_cv_cxx_compile_cxx17__std_cpp17 != "yes"], +AS_IF([test $ax_cv_cxx_compile_cxx17__std_cpp17 != "yes"], [ AX_CXX_COMPILE_STDCXX_14([noext], [optional]) AS_IF([test $ax_cv_cxx_compile_cxx14__std_cpp14 != "yes"], AX_CXX_COMPILE_STDCXX_11([noext], [optional]) ) -) +]) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_BIGENDIAN