]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add pandoc and w3m
authorMichal Nowak <mnowak@isc.org>
Wed, 26 Aug 2020 14:28:42 +0000 (14:28 +0000)
committerMichal Nowak <mnowak@isc.org>
Wed, 26 Aug 2020 16:30:04 +0000 (16:30 +0000)
pandoc and w3m are needed to generate some files.

Makefile.in
configure.ac

index ef4a857f5f38a732663090589c8b9c03dd457a0b..fbaeaa06a1caa021835f4126e1a413d6317fa05c 100644 (file)
@@ -12,6 +12,9 @@ VPATH =               @srcdir@
 top_srcdir =   @top_srcdir@
 top_builddir =  @top_builddir@
 
+PANDOC = @PANDOC@
+W3M = @W3M@
+
 VERSION=@BIND9_VERSION@
 
 SUBDIRS =      make lib fuzz bin doc
index 740935d156ab49bbae84a3120ad46bf74af52d58..0de7a26a4fdc25e7d8d40d1785a0a4a20c441fc9 100644 (file)
@@ -183,6 +183,18 @@ which ar resides, or set AR in the environment with the full path to ar.
                ;;
 esac
 
+#
+# Look for w3m
+#
+AC_PATH_PROGS(W3M, w3m, w3m)
+AC_SUBST(W3M)
+
+#
+# Look for pandoc
+#
+AC_PATH_PROG(PANDOC, pandoc, pandoc)
+AC_SUBST(PANDOC)
+
 #
 # Perl is optional; it is used only by some of the system test scripts.
 # Note: the backtrace feature (see below) uses perl to build the symbol table,