Skip to content
Snippets Groups Projects
Commit a5d17f9f authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

- Check for docbook2man and print warning if it's not there

- Cleanup

Reviewed-by: iustinp
parent 4aae7c5a
No related branches found
No related tags found
No related merge requests found
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# Configure script for Ganeti
AC_PREREQ(2.59)
AC_INIT(ganeti, 1.2a, ganeti@googlegroups.com)
AC_CONFIG_AUX_DIR(autotools)
AM_INIT_AUTOMAKE(foreign)
# Checks for programs.
# Check common programs
AC_PROG_INSTALL
# Checks for python
# Check for Python
AM_PATH_PYTHON(2.4)
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
# Check for docbook2man
found_docbook2man=
AC_CHECK_PROG(found_docbook2man, [docbook2man], [yes])
if test "$found_docbook2man" != "yes"
then
AC_MSG_WARN([docbook2man not found.])
fi
AC_CONFIG_FILES([Makefile man/Makefile docs/Makefile
testing/Makefile tools/Makefile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment