Skip to content

Commit

Permalink
Really fix build with autoconf-2.72 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
drfiemost committed Jan 7, 2024
1 parent 1392e93 commit 7f55f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7f55f05

Please sign in to comment.