[buddy] update obsolete autoconf constructs

Part of #447.

* configure.ac, m4/bdebug.m4: Replace AC_ERROR and AC_HELP_STRING by
by AC_MSG_ERROR and AS_HELP_STRING.
This commit is contained in:
Alexandre Duret-Lutz 2021-01-12 16:12:51 +01:00
parent e076645382
commit 06b5a82950
2 changed files with 5 additions and 5 deletions

View file

@ -20,7 +20,7 @@ AC_PROG_CXX
# Option to activate C++20
AC_ARG_ENABLE([c++20],
[AC_HELP_STRING([--enable-c++20],
[AS_HELP_STRING([--enable-c++20],
[Compile in C++20 mode.])],
[enable_20=yes], [enable_20=no])
@ -89,7 +89,7 @@ if test x"${enable_20}" = xyes; then
${stdpass-false} && break
done
if ! "${stdpass-false}"; then
AC_ERROR([unable to turn on C++20 mode with this compiler])
AC_MSG_ERROR([unable to turn on C++20 mode with this compiler])
fi
else
for f in -std=c++17 '-std=c++17 -stdlib=libc++' -std=c++1z
@ -99,7 +99,7 @@ else
${stdpass-false} && break
done
if ! "${stdpass-false}"; then
AC_ERROR([unable to turn on C++17 mode with this compiler])
AC_MSG_ERROR([unable to turn on C++17 mode with this compiler])
fi
fi

View file

@ -1,6 +1,6 @@
AC_DEFUN([buddy_DEBUG_FLAGS],
[AC_ARG_ENABLE([swap-count],
[AC_HELP_STRING([--enable-swap-count],
[AS_HELP_STRING([--enable-swap-count],
[Count number of fundamental variable swaps (for debugging)])])
case $enable_swap_count in
yes)
@ -11,7 +11,7 @@ case $enable_swap_count in
esac
AC_ARG_ENABLE([cache-stats],
[AC_HELP_STRING([--enable-cache-stats],
[AS_HELP_STRING([--enable-cache-stats],
[Gather statistical information about operator and unique node caching (for debugging)])])
case $enable_cache_stats in
yes)