summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorG. Branden Robinson <g.branden.robinson@gmail.com>2022-06-08 04:07:46 -0500
committerG. Branden Robinson <g.branden.robinson@gmail.com>2022-06-08 04:07:46 -0500
commitc5fe430a770ebb053aea0676bad14b9442dcd01d (patch)
tree51049dc85872a4338c28c6a0cc37a565b52823ce /m4
parent430c61e330d874fc673576c63e5095fb7a79dfd0 (diff)
downloadgroff-git-c5fe430a770ebb053aea0676bad14b9442dcd01d.tar.gz
[build]: Rename some groff Autoconf macros.
... to better match Autoconf's own naming conventions. * m4/groff.m4 (GROFF_MAKEINFO): Rename to... (GROFF_PROG_MAKEINFO): ...this. (GROFF_TEXI2DVI): Rename to... (GROFF_PROG_TEXI2DVI): ...this. * configure.ac: * m4/groff.m4 (GROFF_TEXI2DVI): Update call sites.
Diffstat (limited to 'm4')
-rw-r--r--m4/groff.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/groff.m4 b/m4/groff.m4
index c3de8cb61..44b15012b 100644
--- a/m4/groff.m4
+++ b/m4/groff.m4
@@ -105,7 +105,7 @@ AC_DEFUN([GROFF_PROG_M4], [
# We need makeinfo from Texinfo 5.0 or newer, for @codequoteundirected.
# The minor version checking logic is present for future needs.
-AC_DEFUN([GROFF_MAKEINFO], [
+AC_DEFUN([GROFF_PROG_MAKEINFO], [
if ! test -f "$srcdir"/.tarball-version
then
# By default automake will set MAKEINFO to MAKEINFO = ${SHELL} <top
@@ -154,10 +154,10 @@ AC_DEFUN([GROFF_MAKEINFO], [
# 'makeinfo' and 'texi2dvi' are distributed together, so if the former
# is too old, the latter is too.
-AC_DEFUN([GROFF_TEXI2DVI], [
+AC_DEFUN([GROFF_PROG_TEXI2DVI], [
if ! test -f "$srcdir"/.tarball-version
then
- AC_REQUIRE([GROFF_MAKEINFO])
+ AC_REQUIRE([GROFF_PROG_MAKEINFO])
AC_CHECK_PROG([PROG_TEXI2DVI], [texi2dvi], [texi2dvi], [missing])
groff_have_texi2dvi=no
if test "$PROG_TEXI2DVI" != missing && test -n "$MAKEINFO"