aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 9af70d25b..25a558902 100644
--- a/configure.ac
+++ b/configure.ac
@@ -444,6 +444,15 @@ AC_MSG_CHECKING(for texi2mdoc binary)
444AC_CHECK_PROGS(TEXI2MDOC_BINARY, [texi2mdoc], false) 444AC_CHECK_PROGS(TEXI2MDOC_BINARY, [texi2mdoc], false)
445AM_CONDITIONAL(HAVE_TEXI2MDOC, test x$TEXI2MDOC_BINARY != xfalse) 445AM_CONDITIONAL(HAVE_TEXI2MDOC, test x$TEXI2MDOC_BINARY != xfalse)
446 446
447# texi2man is a tool which needs to be investigated and
448# is probably incompatible to texi2mdoc in invocation.
449# Detection at this point only serves as a reminder that
450# I will work this into the build-system.
451AC_MSG_CHECKING(for texi2man perl script)
452AC_CHECK_PROGS(TEXI2MAN_SCRIPT, [texi2man], false)
453AM_CONDITIONAL(HAVE_TEXI2MAN, test x$TEXI2MAN_SCRIPT != xfalse)
454
455
447# test for mandoc 456# test for mandoc
448AC_MSG_CHECKING(for mandoc binary) 457AC_MSG_CHECKING(for mandoc binary)
449AC_CHECK_PROGS(MANDOC_BINARY, [mandoc], false) 458AC_CHECK_PROGS(MANDOC_BINARY, [mandoc], false)