X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/539210af45bafb300ab3c7b0b76b65552b7af09e..11c31f5cb58fefed1575acf4ad0cd199d514dccc:/configure.ac diff --git a/configure.ac b/configure.ac index 3b4f0e2..3dd9e4e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ # Configure script for Ganeti m4_define([gnt_version_major], [2]) -m4_define([gnt_version_minor], [0]) -m4_define([gnt_version_revision], [2]) -m4_define([gnt_version_suffix], []) +m4_define([gnt_version_minor], [1]) +m4_define([gnt_version_revision], [0]) +m4_define([gnt_version_suffix], [~beta0]) m4_define([gnt_version_full], m4_format([%d.%d.%d%s], gnt_version_major, gnt_version_minor, @@ -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], @@ -170,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 ])