Skip to content
Snippets Groups Projects
configure.ac 565 B
Newer Older
# Configure script for Ganeti
Iustin Pop's avatar
Iustin Pop committed

AC_PREREQ(2.59)
AC_INIT(ganeti, 1.2a, ganeti@googlegroups.com)
AC_CONFIG_AUX_DIR(autotools)
Iustin Pop's avatar
Iustin Pop committed
AM_INIT_AUTOMAKE(foreign)

Iustin Pop's avatar
Iustin Pop committed
AC_PROG_INSTALL

Iustin Pop's avatar
Iustin Pop committed
AM_PATH_PYTHON(2.4)

# 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
Iustin Pop's avatar
Iustin Pop committed

AC_CONFIG_FILES([Makefile man/Makefile docs/Makefile 
  testing/Makefile tools/Makefile
  lib/Makefile scripts/Makefile daemons/Makefile])
Iustin Pop's avatar
Iustin Pop committed
AC_OUTPUT