X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/7a8994d471db3244c67647186c5fca06569de924..76e2f08a6221b83a9203987c254140916aa9c838:/configure.ac diff --git a/configure.ac b/configure.ac index 58de2f3..9f56606 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Configure script for Ganeti m4_define([gnt_version_major], [2]) m4_define([gnt_version_minor], [0]) -m4_define([gnt_version_revision], [0]) +m4_define([gnt_version_revision], [4]) m4_define([gnt_version_suffix], []) m4_define([gnt_version_full], m4_format([%d.%d.%d%s], @@ -61,6 +61,15 @@ AC_ARG_WITH([iallocator-search-path], [iallocator_search_path="'$libdir/$PACKAGE_NAME/iallocators'"]) AC_SUBST(IALLOCATOR_SEARCH_PATH, $iallocator_search_path) +# --with-xen-bootloader=... +AC_ARG_WITH([xen-bootloader], + [AS_HELP_STRING([--with-xen-bootloader=PATH], + [bootloader for Xen hypervisor (default is empty)] + )], + [xen_bootloader="$withval"], + [xen_bootloader=]) +AC_SUBST(XEN_BOOTLOADER, $xen_bootloader) + # --with-xen-kernel=... AC_ARG_WITH([xen-kernel], [AS_HELP_STRING([--with-xen-kernel=PATH], @@ -119,6 +128,16 @@ AC_ARG_WITH([socat-path], [socat_path="/usr/bin/socat"]) AC_SUBST(SOCAT_PATH, $socat_path) +# ---with-lvm-stripecount=... +AC_ARG_WITH([lvm-stripecount], + [AS_HELP_STRING([--with-lvm-stripecount=NUM], + [the number of stripes to use for LVM volumes] + [ (default is 1)] + )], + [lvm_stripecount="$withval"], + [lvm_stripecount="1"]) +AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount) + # Check common programs AC_PROG_INSTALL AC_PROG_LN_S @@ -138,12 +157,12 @@ then AC_MSG_WARN([docbook2html not found, man pages rebuild will not be possible]) fi -# Check for rst programs -AC_ARG_VAR(RST2HTML, [rst2html path]) -AC_PATH_PROG(RST2HTML, [rst2html], []) -if test -z "$RST2HTML" +# Check for python-sphinx +AC_ARG_VAR(SPHINX, [sphinx-build path]) +AC_PATH_PROG(SPHINX, [sphinx-build], []) +if test -z "$SPHINX" then - AC_MSG_WARN([rst2html not found, documentation rebuild will not be possible]) + AC_MSG_WARN([sphinx-build not found, documentation rebuild will not be possible]) fi # Check for graphviz (dot) @@ -160,6 +179,7 @@ AM_PATH_PYTHON(2.4) AC_PYTHON_MODULE(OpenSSL, t) AC_PYTHON_MODULE(simplejson, t) AC_PYTHON_MODULE(pyparsing, t) +AC_PYTHON_MODULE(pyinotify, t) AC_CONFIG_FILES([ Makefile ])