Complete rename of testing/ to test/.
[ganeti-local] / configure.ac
1 # Configure script for Ganeti
2
3 AC_PREREQ(2.59)
4 AC_INIT(ganeti, 1.2b2, ganeti@googlegroups.com)
5 AC_CONFIG_AUX_DIR(autotools)
6 AM_INIT_AUTOMAKE([foreign tar-ustar])
7
8 # Check common programs
9 AC_PROG_INSTALL
10
11 # Check for Python
12 AM_PATH_PYTHON(2.4)
13
14 # Check for docbook2man
15 found_docbook2man=
16 AC_CHECK_PROG(found_docbook2man, [docbook2man], [yes])
17 if test "$found_docbook2man" != "yes"
18 then
19   AC_MSG_WARN([docbook2man not found.])
20 fi
21
22 AC_CONFIG_FILES([
23   Makefile
24   daemons/Makefile
25   doc/Makefile
26   doc/examples/Makefile
27   lib/Makefile
28   man/Makefile
29   qa/Makefile
30   scripts/Makefile
31   test/Makefile
32   tools/Makefile
33 ])
34
35 AC_OUTPUT