summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2021-01-01 12:51:17 -0800
committerKevin McCarthy <kevin@8t8.us>2021-01-03 13:00:29 -0800
commit47dc3b0853610755cf0e6a58c0b5e82f52f7eb84 (patch)
tree5673ad4e7309c09c89ad0ef99cd5a336b2f31f20
parent2754a0578a96976804e2ee48b53b279435570dfa (diff)
Replace AC_HELP_STRING with AS_HELP_STRING.
-rw-r--r--configure.ac4
-rw-r--r--m4/gettext.m44
-rw-r--r--m4/gpg-error.m42
-rw-r--r--m4/gpgme.m42
-rw-r--r--m4/iconv.m42
5 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 5367a74c..5069d6dd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -213,7 +213,7 @@ if test x$have_smime != xno ; then
SMIMEAUX_TARGET="smime_keys"
fi
-AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar support]),
+AC_ARG_ENABLE(sidebar, AS_HELP_STRING([--enable-sidebar], [Enable Sidebar support]),
[ if test x$enableval = xyes ; then
AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.])
OPS="$OPS \$(srcdir)/OPS.SIDEBAR"
@@ -221,7 +221,7 @@ AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar suppor
fi
])
-AC_ARG_ENABLE(compressed, AC_HELP_STRING([--enable-compressed], [Enable compressed folders support]),
+AC_ARG_ENABLE(compressed, AS_HELP_STRING([--enable-compressed], [Enable compressed folders support]),
enable_compressed=$enableval, enable_compressed=no
)
AS_IF([test x$enable_compressed = "xyes"], [
diff --git a/m4/gettext.m4 b/m4/gettext.m4
index b6d1648b..4803b751 100644
--- a/m4/gettext.m4
+++ b/m4/gettext.m4
@@ -50,7 +50,7 @@ AC_DEFUN([MUTT_AM_WITH_NLS],
[AC_MSG_CHECKING([whether NLS is requested])
dnl Default is enabled NLS
AC_ARG_ENABLE(nls,
- AC_HELP_STRING([--disable-nls], [Do not use Native Language Support]),
+ AS_HELP_STRING([--disable-nls], [Do not use Native Language Support]),
USE_NLS=$enableval, USE_NLS=yes)
AC_MSG_RESULT($USE_NLS)
AC_SUBST(USE_NLS)
@@ -66,7 +66,7 @@ AC_DEFUN([MUTT_AM_WITH_NLS],
is requested.])
AC_MSG_CHECKING([whether included gettext is requested])
AC_ARG_WITH(included-gettext,
- AC_HELP_STRING([--with-included-gettext], [Use the GNU gettext library included here]),
+ AS_HELP_STRING([--with-included-gettext], [Use the GNU gettext library included here]),
nls_cv_force_use_gnu_gettext=$withval,
nls_cv_force_use_gnu_gettext=no)
AC_MSG_RESULT($nls_cv_force_use_gnu_gettext)
diff --git a/m4/gpg-error.m4 b/m4/gpg-error.m4
index a9d572fb..28230a2b 100644
--- a/m4/gpg-error.m4
+++ b/m4/gpg-error.m4
@@ -31,7 +31,7 @@ AC_DEFUN([AM_PATH_GPG_ERROR],
dnl since that is consistent with how our three siblings use the directory/
dnl package name in --with-$dir_name-prefix=PFX.
AC_ARG_WITH(libgpg-error-prefix,
- AC_HELP_STRING([--with-libgpg-error-prefix=PFX],
+ AS_HELP_STRING([--with-libgpg-error-prefix=PFX],
[prefix where GPG Error is installed (optional)]),
[gpg_error_config_prefix="$withval"])
diff --git a/m4/gpgme.m4 b/m4/gpgme.m4
index 2a72f185..4363f9a4 100644
--- a/m4/gpgme.m4
+++ b/m4/gpgme.m4
@@ -14,7 +14,7 @@
AC_DEFUN([_AM_PATH_GPGME_CONFIG],
[ AC_ARG_WITH(gpgme-prefix,
- AC_HELP_STRING([--with-gpgme-prefix=PFX],
+ AS_HELP_STRING([--with-gpgme-prefix=PFX],
[prefix where GPGME is installed (optional)]),
gpgme_config_prefix="$withval", gpgme_config_prefix="")
if test x"${GPGME_CONFIG}" = x ; then
diff --git a/m4/iconv.m4 b/m4/iconv.m4
index fa9bd463..f3ea4fe2 100644
--- a/m4/iconv.m4
+++ b/m4/iconv.m4
@@ -8,7 +8,7 @@ AC_DEFUN([MUTT_AM_ICONV],
dnl those with the standalone portable GNU libiconv installed).
AC_ARG_WITH([libiconv-prefix],
-AC_HELP_STRING([--with-libiconv-prefix@<:@=DIR@:>@], [Search for libiconv in DIR/include and DIR/lib]), [
+AS_HELP_STRING([--with-libiconv-prefix@<:@=DIR@:>@], [Search for libiconv in DIR/include and DIR/lib]), [
for dir in `echo "$withval" | tr : ' '`; do
if test -d $dir/include; then CPPFLAGS="$CPPFLAGS -I$dir/include"; fi
if test -d $dir/lib; then LDFLAGS="$LDFLAGS -L$dir/lib"; fi