summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-06 17:19:20 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-15 16:13:11 -0800
commit439ad387be655b0198ddd2b54bd036044263b438 (patch)
tree9d4820d4dac843aefaa84e0f85bafc38675af257
parentc3be3e246042f017b86d72fa96ed4ca35858ed3a (diff)
configure: replace deprecated AC_HELP_STRING with AS_HELP_STRING
This silences autoconf warnings: configure.ac:24: warning: The macro `AC_HELP_STRING' is obsolete. configure.ac:24: You should run autoupdate. ./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from... configure.ac:24: the top level configure.ac:32: warning: The macro `AC_HELP_STRING' is obsolete. configure.ac:32: You should run autoupdate. ./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from... configure.ac:32: the top level Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b80e3de..f173832 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ XORG_FONT_REQUIRED_PROG(MKFONTSCALE, mkfontscale)
AC_MSG_CHECKING([if small encodings should be compressed])
AC_ARG_ENABLE(gzip-small-encodings,
- AC_HELP_STRING([--disable-gzip-small-encodings],
+ AS_HELP_STRING([--disable-gzip-small-encodings],
[Disable compression of small encoding files]),
[GZIP_SMALL="$enableval"], [GZIP_SMALL="yes"])
AM_CONDITIONAL(GZIP_SMALL, [test x$GZIP_SMALL = xyes])
@@ -31,7 +31,7 @@ AC_MSG_RESULT([${GZIP_SMALL}])
AC_MSG_CHECKING([if large encodings should be compressed])
AC_ARG_ENABLE(gzip-large-encodings,
- AC_HELP_STRING([--disable-gzip-large-encodings],
+ AS_HELP_STRING([--disable-gzip-large-encodings],
[Disable compression of large encoding files]),
[GZIP_LARGE="$enableval"], [GZIP_LARGE="yes"])
AM_CONDITIONAL(GZIP_LARGE, [test x$GZIP_LARGE = xyes])