summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-04-29 22:33:41 +0200
committerRichard Braun <rbraun@sceen.net>2017-04-29 22:33:41 +0200
commit9052566acbe6f4b17085cb1de5ec96f9f4052a92 (patch)
treed6cee4c3617fb686a8999b2bc34fb96c45bde7f8 /tools
parentae03ba3df4224703e34bc9f4bf9de9d55db7faa9 (diff)
Rename custom autoconf macros from ax_check_xxx to ax_prog_xxx
With those names, the macros better conform with those found in the Autoconf Archive.
Diffstat (limited to 'tools')
-rw-r--r--tools/m4/ax_prog_a2x.m4 (renamed from tools/m4/ax_check_a2x.m4)2
-rw-r--r--tools/m4/ax_prog_asciidoc.m4 (renamed from tools/m4/ax_check_asciidoc.m4)2
-rw-r--r--tools/m4/ax_prog_highlight.m4 (renamed from tools/m4/ax_check_highlight.m4)2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/m4/ax_check_a2x.m4 b/tools/m4/ax_prog_a2x.m4
index 438e247..e121481 100644
--- a/tools/m4/ax_check_a2x.m4
+++ b/tools/m4/ax_prog_a2x.m4
@@ -1,4 +1,4 @@
-AC_DEFUN([AX_CHECK_A2X],
+AC_DEFUN([AX_PROG_A2X],
[AC_ARG_VAR([A2X], [path to a2x command])
AC_CHECK_PROG([A2X], [a2x], [a2x])
AS_IF([test x"$A2X" = x], [$1])
diff --git a/tools/m4/ax_check_asciidoc.m4 b/tools/m4/ax_prog_asciidoc.m4
index 5f6132a..fb4f00f 100644
--- a/tools/m4/ax_check_asciidoc.m4
+++ b/tools/m4/ax_prog_asciidoc.m4
@@ -1,4 +1,4 @@
-AC_DEFUN([AX_CHECK_ASCIIDOC],
+AC_DEFUN([AX_PROG_ASCIIDOC],
[AC_ARG_VAR([ASCIIDOC], [path to asciidoc command])
AC_CHECK_PROG([ASCIIDOC], [asciidoc], [asciidoc])
AS_IF([test x"$ASCIIDOC" = x], [$1])
diff --git a/tools/m4/ax_check_highlight.m4 b/tools/m4/ax_prog_highlight.m4
index c72f128..c98316c 100644
--- a/tools/m4/ax_check_highlight.m4
+++ b/tools/m4/ax_prog_highlight.m4
@@ -1,4 +1,4 @@
-AC_DEFUN([AX_CHECK_HIGHLIGHT],
+AC_DEFUN([AX_PROG_HIGHLIGHT],
[AC_ARG_VAR([HIGHLIGHT], [path to highlight command])
AC_CHECK_PROG([HIGHLIGHT], [highlight], [highlight])
AS_IF([test x"$HIGHLIGHT" = x], [$1])