]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
autoupdate: replace obsolete macros AC_HELP_STRING
authorMatthieu Longo <matthieu.longo@arm.com>
Tue, 28 May 2024 09:49:40 +0000 (10:49 +0100)
committerAlan Modra <amodra@gmail.com>
Sun, 9 Jun 2024 22:55:55 +0000 (08:25 +0930)
- AC_HELP_STRING by AS_HELP_STRING
  https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.72/autoconf.html#index-AC_005fHELP_005fSTRING-1
Except for the ifdef in lib-prefix.m4, make the defun of AC_LIB_ARG_WITH
unconditional.

binutils/configure.ac
config/debuginfod.m4
config/enable.m4
config/lib-prefix.m4
ld/configure.ac
readline/readline/configure.ac
sim/configure.ac

index ac3e418392fd1b9243bd513547f81c9a90660c24..19c5d7d7c34ca57ba6dd03ecb4912104b0dd6e29 100644 (file)
@@ -292,7 +292,7 @@ BFD_BINARY_FOPEN
 
 # Support for the msgpack C library.
 AC_ARG_WITH([msgpack],
-           AC_HELP_STRING([--with-msgpack], [Enable msgpack support (auto/yes/no)]),
+           AS_HELP_STRING([--with-msgpack], [Enable msgpack support (auto/yes/no)]),
            [],
            [with_msgpack=auto])
 
index c5077acb4c3089ee4062aaca194ce4539e36206a..a32cf2c845f227759d0bbfdbb950cdcc4c8b4886 100644 (file)
@@ -15,7 +15,7 @@ AC_DEFUN([AC_DEBUGINFOD],
 # Define HAVE_LIBDEBUGINFOD_FIND_SECTION if libdebuginfod is found with
 # version >= 0.188.
 AC_ARG_WITH([debuginfod],
-  AC_HELP_STRING([--with-debuginfod], [Enable debuginfo lookups with debuginfod (auto/yes/no)]),
+  AS_HELP_STRING([--with-debuginfod], [Enable debuginfo lookups with debuginfod (auto/yes/no)]),
   [], [with_debuginfod=auto])
 AC_MSG_CHECKING([whether to use debuginfod])
 AC_MSG_RESULT([$with_debuginfod])
index 88b29b8aa7fb0d68b113969e8bc84388e4d2634e..119c3701095bafb088c27d13545eade53c27dc45 100644 (file)
@@ -11,7 +11,7 @@ dnl See docs/html/17_intro/configury.html#enable for documentation.
 dnl
 AC_DEFUN([GCC_ENABLE],[dnl
 m4_define([_g_switch],[--enable-$1])dnl
-m4_define([_g_help],[AC_HELP_STRING(_g_switch$3,[$4 @<:@default=$2@:>@])])dnl
+m4_define([_g_help],[AS_HELP_STRING([_g_switch$3],[$4 @<:@default=$2@:>@])])dnl
  AC_ARG_ENABLE($1,_g_help,
   m4_bmatch([$5],
    [^permit ],
index c719bc809002e3e5828d132eb66478f5787252e3..0c6ce029d66dead3d83a7cb7a3aada16f2779fa4 100644 (file)
@@ -8,12 +8,9 @@ dnl the same distribution terms as the rest of that program.
 
 dnl From Bruno Haible.
 
-dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and
-dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't
+dnl AC_LIB_ARG_WITH is similar to AC_ARG_WITH except that it doesn't
 dnl require excessive bracketing.
-ifdef([AC_HELP_STRING],
-[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])],
-[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])])
+AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])
 
 dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed
 dnl to access previously installed libraries. The basic assumption is that
index 0d4aa4c2373f2d8c2b1ab9bae738287ea21a92ab..84f4044d5fc52ea9e2402aa0d40464b46961b12c 100644 (file)
@@ -197,7 +197,7 @@ esac])dnl
 # Decide if DT_TEXTREL check should be enabled in ELF linker.
 ac_default_ld_textrel_check=unset
 AC_ARG_ENABLE([textrel-check],
-             AC_HELP_STRING([--enable-textrel-check=@<:@yes|no|warning|error@:>@],
+             AS_HELP_STRING([--enable-textrel-check=@<:@yes|no|warning|error@:>@],
                             [enable DT_TEXTREL check in ELF linker]),
 [case "${enableval}" in
   yes|no|warning|error) ac_default_ld_textrel_check=${enableval} ;;
index 912c99b65750d43ad975cf3602f00ec65012a00c..c800f1c86673f14859f27da98c0a86e47a66d924 100644 (file)
@@ -45,7 +45,7 @@ dnl configure defaults
 opt_curses=no
 
 dnl arguments to configure
-AC_ARG_WITH(curses, AC_HELP_STRING([--with-curses], [use the curses library instead of the termcap library]), opt_curses=$withval)
+AC_ARG_WITH(curses, AS_HELP_STRING([--with-curses], [use the curses library instead of the termcap library]), opt_curses=$withval)
 
 if test "$opt_curses" = "yes"; then
        prefer_curses=yes
@@ -58,12 +58,12 @@ opt_shared_libs=no
 opt_install_examples=no
 opt_bracketed_paste_default=yes
 
-AC_ARG_ENABLE(multibyte, AC_HELP_STRING([--enable-multibyte], [enable multibyte characters if OS supports them]), opt_multibyte=$enableval)
-dnl AC_ARG_ENABLE(shared, AC_HELP_STRING([--enable-shared], [build shared libraries [[default=YES]]]), opt_shared_libs=$enableval)
-AC_ARG_ENABLE(static, AC_HELP_STRING([--enable-static], [build static libraries [[default=YES]]]), opt_static_libs=$enableval)
-AC_ARG_ENABLE(install-examples, AC_HELP_STRING([--disable-install-examples], [don't install examples [[default=install]]]), opt_install_examples=$enableval)
+AC_ARG_ENABLE(multibyte, AS_HELP_STRING([--enable-multibyte], [enable multibyte characters if OS supports them]), opt_multibyte=$enableval)
+dnl AC_ARG_ENABLE(shared, AS_HELP_STRING([--enable-shared], [build shared libraries [[default=YES]]]), opt_shared_libs=$enableval)
+AC_ARG_ENABLE(static, AS_HELP_STRING([--enable-static], [build static libraries [[default=YES]]]), opt_static_libs=$enableval)
+AC_ARG_ENABLE(install-examples, AS_HELP_STRING([--disable-install-examples], [don't install examples [[default=install]]]), opt_install_examples=$enableval)
 
-AC_ARG_ENABLE(bracketed-paste-default, AC_HELP_STRING([--disable-bracketed-paste-default], [disable bracketed paste by default [[default=enable]]]), opt_bracketed_paste_default=$enableval)
+AC_ARG_ENABLE(bracketed-paste-default, AS_HELP_STRING([--disable-bracketed-paste-default], [disable bracketed paste by default [[default=enable]]]), opt_bracketed_paste_default=$enableval)
 
 if test $opt_multibyte = no; then
 AC_DEFINE(NO_MULTIBYTE_SUPPORT)
index 125eaa5ea310182590158d7b14f259f4b8da0f60..fad5b71ee59b626b98ed30be2391582c645bf5a9 100644 (file)
@@ -37,7 +37,7 @@ yes | no) ;;
 esac])
 
 AC_ARG_ENABLE([example-sims],
-             [AC_HELP_STRING([--enable-example-sims],
+             [AS_HELP_STRING([--enable-example-sims],
                              [enable example GNU simulators])])
 
 AC_ARG_ENABLE(targets,