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 -*- # Configure script for Ganeti
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59) AC_PREREQ(2.59)
AC_INIT(ganeti, 1.2a, ganeti@googlegroups.com) AC_INIT(ganeti, 1.2a, ganeti@googlegroups.com)
AC_CONFIG_AUX_DIR(autotools) AC_CONFIG_AUX_DIR(autotools)
AM_INIT_AUTOMAKE(foreign) AM_INIT_AUTOMAKE(foreign)
# Checks for programs. # Check common programs
AC_PROG_INSTALL AC_PROG_INSTALL
# Checks for python # Check for Python
AM_PATH_PYTHON(2.4) AM_PATH_PYTHON(2.4)
# Checks for libraries. # Check for docbook2man
found_docbook2man=
# Checks for header files. AC_CHECK_PROG(found_docbook2man, [docbook2man], [yes])
if test "$found_docbook2man" != "yes"
# Checks for typedefs, structures, and compiler characteristics. then
AC_MSG_WARN([docbook2man not found.])
# Checks for library functions. fi
AC_CONFIG_FILES([Makefile man/Makefile docs/Makefile AC_CONFIG_FILES([Makefile man/Makefile docs/Makefile
testing/Makefile tools/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