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

AC_PREREQ(2.59)
Iustin Pop's avatar
Iustin Pop committed
AC_INIT(ganeti, 1.2b1, ganeti@googlegroups.com)
AC_CONFIG_AUX_DIR(autotools)
Iustin Pop's avatar
Iustin Pop committed
AM_INIT_AUTOMAKE([foreign tar-ustar dist-bzip2])
Iustin Pop's avatar
Iustin Pop committed

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 doc/Makefile
  testing/Makefile tools/Makefile
  lib/Makefile scripts/Makefile daemons/Makefile
  doc/examples/Makefile])
Iustin Pop's avatar
Iustin Pop committed
AC_OUTPUT