Allow burnin to use an iallocator in instance creation
[ganeti-local] / configure.ac
1 # Configure script for Ganeti
2 AC_PREREQ(2.59)
3 AC_INIT(ganeti, 1.2.3, ganeti@googlegroups.com)
4 AC_CONFIG_AUX_DIR(autotools)
5 AC_CONFIG_SRCDIR(configure)
6 AM_INIT_AUTOMAKE([foreign tar-ustar])
7
8 # --with-ssh-initscript=...
9 AC_ARG_WITH([ssh-initscript],
10   [AS_HELP_STRING([--with-ssh-initscript=SCRIPT],
11     [SSH init script to use (default is /etc/init.d/ssh)]
12   )],
13   [ssh_initd_script="$withval"],
14   [ssh_initd_script="/etc/init.d/ssh"])
15 AC_SUBST(SSH_INITD_SCRIPT, $ssh_initd_script)
16
17 # --with-export-dir=...
18 AC_ARG_WITH([export-dir],
19   [AS_HELP_STRING([--with-export-dir=DIR],
20     [directory to use by default for instance image]
21     [ exports (default is /srv/ganeti/export)]
22   )],
23   [export_dir="$withval"],
24   [export_dir="/srv/ganeti/export"])
25 AC_SUBST(EXPORT_DIR, $export_dir)
26
27 # --with-os-search-path=...
28 # do a bit of black sed magic to for quoting of the strings in the list
29 AC_ARG_WITH([os-search-path],
30   [AS_HELP_STRING([--with-os-search-path=LIST],
31     [comma separated list of directories to]
32     [ search for OS images (default is /srv/ganeti/os)]
33   )],
34   [os_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
35   [os_search_path="'/srv/ganeti/os'"])
36 AC_SUBST(OS_SEARCH_PATH, $os_search_path)
37
38 # --with-iallocator-search-path=...
39 # do a bit of black sed magic to for quoting of the strings in the list
40 AC_ARG_WITH([iallocator-search-path],
41   [AS_HELP_STRING([--with-iallocator-search-path=LIST],
42     [comma separated list of directories to]
43     [ search for instance allocators (default is $libdir/ganeti/iallocators)]
44   )],
45   [iallocator_search_path=`echo -n "$withval" | sed -e "s/\([[^,]]*\)/'\1'/g"`],
46   [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"])
47 AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path)
48
49 # --with-xen-kernel=...
50 AC_ARG_WITH([xen-kernel],
51   [AS_HELP_STRING([--with-xen-kernel=PATH],
52     [DomU kernel image for Xen hypervisor (default is /boot/vmlinuz-2.6-xenU)]
53   )],
54   [xen_kernel="$withval"],
55   [xen_kernel="/boot/vmlinuz-2.6-xenU"])
56 AC_SUBST(XEN_KERNEL, $xen_kernel)
57
58 # --with-xen-initrd=...
59 AC_ARG_WITH([xen-initrd],
60   [AS_HELP_STRING([--with-xen-initrd=PATH],
61     [DomU initrd image for Xen hypervisor (default is /boot/initrd-2.6-xenU)]
62   )],
63   [xen_initrd="$withval"],
64   [xen_initrd="/boot/initrd-2.6-xenU"])
65 AC_SUBST(XEN_INITRD, $xen_initrd)
66
67 # Check common programs
68 AC_PROG_INSTALL
69 AC_PROG_LN_S
70
71 # Check for Python
72 AM_PATH_PYTHON(2.4)
73
74 AC_PYTHON_MODULE(twisted.internet, t)
75 AC_PYTHON_MODULE(twisted.cred, t)
76 AC_PYTHON_MODULE(twisted.spread, t)
77 AC_PYTHON_MODULE(OpenSSL, t)
78 AC_PYTHON_MODULE(simplejson, t)
79 AC_PYTHON_MODULE(pyparsing, t)
80
81 # Check for docbook2man
82 found_docbook2man=
83 AC_CHECK_PROG(found_docbook2man, [docbook2man], [yes])
84 if test "$found_docbook2man" != "yes"
85 then
86   AC_MSG_WARN([docbook2man not found.])
87 fi
88
89 AC_CONFIG_FILES([
90   Makefile
91   daemons/Makefile
92   doc/Makefile
93   doc/examples/Makefile
94   lib/Makefile
95   man/Makefile
96   qa/Makefile
97   qa/hooks/Makefile
98   scripts/Makefile
99   test/Makefile
100   tools/Makefile
101 ])
102
103 AC_OUTPUT