summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorAlexander Traud <pabstraud@compuserve.com>2016-06-21 15:01:40 +0200
committerAlexander Traud <pabstraud@compuserve.com>2016-06-21 08:14:19 -0500
commitcbfa9f771e0756a4c8f76b68d65a936af2a55ace (patch)
treefc291bb0fcb4a3923852153d1091d315ba2fee5f /autoconf
parentb0e71c6571ec34a1aa115ce0ba26f7e37f487eaa (diff)
BuildSystem: Avoid obsolete warning with HELP_STRING on autoconf.
Some configure scripts used both AC_HELP_STRING and its replacement AS_HELP_STRING. For consistency and to avoid obsolete warnings, those were changed to AS_HELP_STRING. ASTERISK-26046 Change-Id: I8aad4fd2bdee40aa2a31ce3339a1eb33ff4f5b0f
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/ast_ext_lib.m42
-rw-r--r--autoconf/ast_prog_ld.m42
2 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/ast_ext_lib.m4 b/autoconf/ast_ext_lib.m4
index 8f35f4bad..2c73b40c5 100644
--- a/autoconf/ast_ext_lib.m4
+++ b/autoconf/ast_ext_lib.m4
@@ -11,7 +11,7 @@ AC_DEFUN([AST_EXT_LIB_SETUP],
$1_DESCRIP="$2"
$1_OPTION="$3"
PBX_$1=0
- AC_ARG_WITH([$3], AC_HELP_STRING([--with-$3=PATH],[use $2 files in PATH$4]),
+ AC_ARG_WITH([$3], AS_HELP_STRING([--with-$3=PATH],[use $2 files in PATH$4]),
[
case ${withval} in
n|no)
diff --git a/autoconf/ast_prog_ld.m4 b/autoconf/ast_prog_ld.m4
index 9177fedb3..b69c2c2ac 100644
--- a/autoconf/ast_prog_ld.m4
+++ b/autoconf/ast_prog_ld.m4
@@ -3,7 +3,7 @@
# find the pathname to the GNU or non-GNU linker
AC_DEFUN([AST_PROG_LD],
[AC_ARG_WITH([gnu-ld],
- [AC_HELP_STRING([--with-gnu-ld],
+ [AS_HELP_STRING([--with-gnu-ld],
[assume the C compiler uses GNU ld @<:@default=no@:>@])],
[test "$withval" = no || with_gnu_ld=yes],
[with_gnu_ld=no])