1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.67])
5AC_INIT([Xen Hypervisor Documentation], m4_esyscmd([../version.sh ../xen/Makefile]),
6    [xen-devel@lists.xen.org], [xen], [https://www.xen.org/])
7AC_CONFIG_SRCDIR([misc/xen-command-line.pandoc])
8AC_CONFIG_FILES([
9../config/Docs.mk
10man/xl.cfg.5.pod
11man/xl.1.pod
12man/xl-disk-configuration.5.pod
13man/xl-network-configuration.5.pod
14man/xl.conf.5.pod
15])
16AC_CONFIG_AUX_DIR([../])
17
18# M4 Macro includes
19m4_include([../m4/docs_tool.m4])
20m4_include([../m4/path_or_fail.m4])
21m4_include([../m4/features.m4])
22m4_include([../m4/paths.m4])
23
24AX_XEN_EXPAND_CONFIG()
25
26AX_DOCS_TOOL_PROG([FIG2DEV], [fig2dev])
27AX_DOCS_TOOL_PROG([POD2MAN], [pod2man])
28AX_DOCS_TOOL_PROG([POD2HTML], [pod2html])
29AX_DOCS_TOOL_PROG([POD2TEXT], [pod2text])
30AX_DOCS_TOOL_PROG([PANDOC], [pandoc])
31
32AC_ARG_VAR([PERL], [Path to Perl parser])
33AX_PATH_PROG_OR_FAIL([PERL], [perl])
34
35AC_OUTPUT()
36