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], [http://www.xen.org/])
7AC_CONFIG_SRCDIR([misc/xen-command-line.markdown])
8AC_CONFIG_FILES([
9../config/Docs.mk
10man/xl.cfg.pod.5
11man/xl.pod.1
12])
13AC_CONFIG_AUX_DIR([../])
14
15# M4 Macro includes
16m4_include([../m4/docs_tool.m4])
17m4_include([../m4/path_or_fail.m4])
18m4_include([../m4/features.m4])
19m4_include([../m4/paths.m4])
20
21AX_XEN_EXPAND_CONFIG()
22
23AX_DOCS_TOOL_PROG([FIG2DEV], [fig2dev])
24AX_DOCS_TOOL_PROG([POD2MAN], [pod2man])
25AX_DOCS_TOOL_PROG([POD2HTML], [pod2html])
26AX_DOCS_TOOL_PROG([POD2TEXT], [pod2text])
27AX_DOCS_TOOL_PROG([PANDOC], [pandoc])
28AX_DOCS_TOOL_PROGS([MARKDOWN], [markdown], [markdown markdown_py])
29
30AC_ARG_VAR([PERL], [Path to Perl parser])
31AX_PATH_PROG_OR_FAIL([PERL], [perl])
32
33AC_OUTPUT()
34