X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/045209986805a01a81ad19aa8940dedeabbd6d25..f22433c0f9d678670139cf42df22188a57adeca3:/configure.ac diff --git a/configure.ac b/configure.ac index 2d0cb92..f53e422 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], [6]) -m4_define([gnt_version_revision], [0]) +m4_define([gnt_version_revision], [1]) m4_define([gnt_version_suffix], []) m4_define([gnt_version_full], m4_format([%d.%d.%d%s], @@ -104,7 +104,7 @@ AC_ARG_WITH([xen-cmd], [Sets the xen cli interface command (default is xm)] )], [xen_cmd="$withval"], - [xen_cmd="xm"]) + [xen_cmd=xm]) AC_SUBST(XEN_CMD, $xen_cmd) if ! test "$XEN_CMD" = xl -o "$XEN_CMD" = xm; then @@ -134,7 +134,7 @@ AC_ARG_WITH([file-storage-dir], fi ]], [[file_storage_dir="/srv/ganeti/file-storage"; - enable_file_storage="True"]]) + enable_file_storage=True]]) AC_SUBST(FILE_STORAGE_DIR, $file_storage_dir) AC_SUBST(ENABLE_FILE_STORAGE, $enable_file_storage) @@ -152,7 +152,7 @@ AC_ARG_WITH([shared-file-storage-dir], fi ]], [[shared_file_storage_dir="/srv/ganeti/shared-file-storage"; - enable_shared_file_storage="True"]]) + enable_shared_file_storage=True]]) AC_SUBST(SHARED_FILE_STORAGE_DIR, $shared_file_storage_dir) AC_SUBST(ENABLE_SHARED_FILE_STORAGE, $enable_shared_file_storage) @@ -173,7 +173,7 @@ AC_ARG_WITH([lvm-stripecount], [ (default is 1)] )], [lvm_stripecount="$withval"], - [lvm_stripecount="1"]) + [lvm_stripecount=1]) AC_SUBST(LVM_STRIPECOUNT, $lvm_stripecount) # --with-ssh-login-user=... @@ -268,7 +268,8 @@ AC_MSG_NOTICE([Group for clients is $group_admin]) # --enable-drbd-barriers AC_ARG_ENABLE([drbd-barriers], [AS_HELP_STRING([--enable-drbd-barriers], - [enable by default the DRBD barriers functionality (>= 8.0.12) (default: enabled)])], + m4_normalize([enable the DRBD barriers functionality by + default (>= 8.0.12) (default: enabled)]))], [[if test "$enableval" != no; then DRBD_BARRIERS=n DRBD_NO_META_FLUSH=False @@ -310,69 +311,18 @@ then fi AC_SUBST(SYSLOG_USAGE, $SYSLOG) -# --enable-htools -HTOOLS= -AC_ARG_ENABLE([htools], - [AS_HELP_STRING([--enable-htools], - [enable use of htools (needs GHC and libraries, default: check)])], - [], - [enable_htools=check]) - -# --enable-htools-rapi -HTOOLS_RAPI= -AC_ARG_ENABLE([htools-rapi], - [AS_HELP_STRING([--enable-htools-rapi], - [enable use of RAPI in htools (needs curl, default: no)])], - [], - [enable_htools_rapi=no]) - -# --enable-confd -ENABLE_CONFD= -AC_ARG_ENABLE([confd], - [AS_HELP_STRING([--enable-confd], - [enable the ganeti-confd daemon (default: yes)])], - [[case "$enableval" in - no) - enable_confd=False - ;; - yes|haskell) - enable_confd=True - ;; - *) - echo "Invalid value for enable-confd '$enableval'" - exit 1 - ;; - esac - ]], - [enable_confd=True]) -AC_SUBST(ENABLE_CONFD, $enable_confd) - -AM_CONDITIONAL([ENABLE_CONFD], [test x$enable_confd = xTrue]) - -# --enable-split-query -ENABLE_SPLIT_QUERY= -AC_ARG_ENABLE([split-query], - [AS_HELP_STRING([--enable-split-query], - [enable use of custom query daemon via confd])], - [[case "$enableval" in - no) - enable_split_query=False - ;; - yes) - enable_split_query=True - ;; - *) - echo "Invalid value for enable-confd '$enableval'" - exit 1 - ;; - esac +AC_ARG_ENABLE([restricted-commands], + [AS_HELP_STRING([--enable-restricted-commands], + m4_normalize([enable restricted commands in the node daemon + (default: disabled)]))], + [[if test "$enableval" = no; then + enable_restricted_commands=False + else + enable_restricted_commands=True + fi ]], - [enable_split_query=False]) -AC_SUBST(ENABLE_SPLIT_QUERY, $enable_split_query) - -if test x$enable_split_query = xTrue -a x$enable_confd != xTrue; then - AC_MSG_ERROR([Split queries require the confd daemon]) -fi + [enable_restricted_commands=False]) +AC_SUBST(ENABLE_RESTRICTED_COMMANDS, $enable_restricted_commands) # --with-disk-separator=... AC_ARG_WITH([disk-separator], @@ -437,7 +387,16 @@ if test -z "$PEP8" then AC_MSG_WARN([pep8 not found, checking code will not be complete]) fi -AM_CONDITIONAL([HAS_PEP8], [test "$PEP8"]) +AM_CONDITIONAL([HAS_PEP8], [test -n "$PEP8"]) + +# Check for python-coverage +AC_ARG_VAR(PYCOVERAGE, [python-coverage path]) +AC_PATH_PROGS(PYCOVERAGE, [python-coverage coverage], []) +if test -z "$PYCOVERAGE" +then + AC_MSG_WARN(m4_normalize([python-coverage or coverage not found, evaluating + Python test coverage will not be possible])) +fi # Check for socat AC_ARG_VAR(SOCAT, [socat path]) @@ -455,99 +414,199 @@ then AC_MSG_WARN([qemu-img not found, using ovfconverter will not be possible]) fi -if test "$enable_htools" != "no"; then +# --enable-htools-rapi +HTOOLS_RAPI= +AC_ARG_ENABLE([htools-rapi], + [AS_HELP_STRING([--enable-htools-rapi], + [enable use of curl in the Haskell code (default: check)])], + [], + [enable_htools_rapi=check]) + +# --enable-confd +ENABLE_CONFD= +AC_ARG_ENABLE([confd], + [AS_HELP_STRING([--enable-confd], + [enable the ganeti-confd daemon (default: check)])], + [], + [enable_confd=check]) + +ENABLE_MONITORING= +AC_ARG_ENABLE([monitoring], + [AS_HELP_STRING([--enable-monitoring], + [enable the ganeti monitoring agent (default: check)])], + [], + [enable_monitoring=check]) # Check for ghc AC_ARG_VAR(GHC, [ghc path]) AC_PATH_PROG(GHC, [ghc], []) if test -z "$GHC"; then - if test "$enable_htools" != "check"; then - AC_MSG_FAILURE([ghc not found, htools compilation will not possible]) - fi + AC_MSG_FAILURE([ghc not found, compilation will not possible]) fi +AC_MSG_CHECKING([checking for extra GHC flags]) +GHC_BYVERSION_FLAGS= +# check for GHC supported flags that vary accross versions +for flag in -fwarn-incomplete-uni-patterns; do + if $GHC -e '0' $flag >/dev/null 2>/dev/null; then + GHC_BYVERSION_FLAGS="$GHC_BYVERSION_FLAGS $flag" + fi +done +AC_MSG_RESULT($GHC_BYVERSION_FLAGS) +AC_SUBST(GHC_BYVERSION_FLAGS) + # Check for ghc-pkg -HTOOLS_MODULES= AC_ARG_VAR(GHC_PKG, [ghc-pkg path]) AC_PATH_PROG(GHC_PKG, [ghc-pkg], []) if test -z "$GHC_PKG"; then - if test "$enable_htools" != "check"; then - AC_MSG_FAILURE([ghc-pkg not found, htools compilation will not be possible]) - fi -else - # check for modules - AC_MSG_NOTICE([checking for required haskell modules]) - HTOOLS_NOCURL=-DNO_CURL - if test "$enable_htools_rapi" != "no"; then - AC_MSG_CHECKING([curl]) - GHC_PKG_CURL=$($GHC_PKG latest curl) - if test -z "$GHC_PKG_CURL"; then - if test "$enable_htools_rapi" = "check"; then - AC_MSG_WARN(m4_normalize([The curl library not found, htools will be - compiled without RAPI support])) - else - AC_MSG_FAILURE(m4_normalize([The curl library was not found, but it has - been requested])) - fi + AC_MSG_FAILURE([ghc-pkg not found, compilation will not be possible]) +fi + +# check for modules, first custom/special checks +AC_MSG_NOTICE([checking for required haskell modules]) +HTOOLS_NOCURL=-DNO_CURL +if test "$enable_htools_rapi" != no; then + AC_GHC_PKG_CHECK([curl], [HTOOLS_NOCURL=], []) + if test -n "$HTOOLS_NOCURL"; then + if test "$enable_htools_rapi" = check; then + AC_MSG_WARN(m4_normalize([The curl library was not found, Haskell + code will be compiled without RAPI support])) else - HTOOLS_NOCURL= + AC_MSG_FAILURE(m4_normalize([The curl library was not found, but it has + been requested])) fi - AC_MSG_RESULT($GHC_PKG_CURL) - fi - AC_SUBST(GHC_PKG_CURL) - AC_SUBST(HTOOLS_NOCURL) - AC_MSG_CHECKING([parallel]) - GHC_PKG_PARALLEL=$($GHC_PKG --simple-output list 'parallel-3.*') - if test -n "$GHC_PKG_PARALLEL" - then - HTOOLS_PARALLEL3=-DPARALLEL3 else - GHC_PKG_PARALLEL=$($GHC_PKG --simple-output list 'parallel-2.*') + AC_MSG_NOTICE([Enabling curl/RAPI/RPC usage in Haskell code]) fi - if test -z "$GHC_PKG_PARALLEL" - then - GHC_PKG_PARALLEL=$($GHC_PKG --simple-output list 'parallel-1.*') - fi - AC_SUBST(GHC_PKG_PARALLEL) - AC_SUBST(HTOOLS_PARALLEL3) - AC_MSG_RESULT($GHC_PKG_PARALLEL) - AC_MSG_CHECKING([json]) - GHC_PKG_JSON=$($GHC_PKG latest json) - AC_MSG_RESULT($GHC_PKG_JSON) - AC_MSG_CHECKING([network]) - GHC_PKG_NETWORK=$($GHC_PKG latest network) - AC_MSG_RESULT($GHC_PKG_NETWORK) - AC_MSG_CHECKING([QuickCheck 2.x]) - GHC_PKG_QUICKCHECK=$($GHC_PKG --simple-output list 'QuickCheck-2.*') - AC_MSG_RESULT($GHC_PKG_QUICKCHECK) - if test -z "$GHC_PKG_PARALLEL" || test -z "$GHC_PKG_JSON" || \ - test -z "$GHC_PKG_NETWORK"; then - if test "$enable_htools" != "check"; then - AC_MSG_FAILURE(m4_normalize([Required Haskell modules not found, htools - compilation disabled])) - fi +fi +AC_SUBST(HTOOLS_NOCURL) + +HTOOLS_PARALLEL3= +AC_GHC_PKG_CHECK([parallel-3.*], [HTOOLS_PARALLEL3=-DPARALLEL3], + [AC_GHC_PKG_REQUIRE(parallel)], t) +AC_SUBST(HTOOLS_PARALLEL3) + +# and now standard modules +AC_GHC_PKG_REQUIRE(json) +AC_GHC_PKG_REQUIRE(network) +AC_GHC_PKG_REQUIRE(mtl) +AC_GHC_PKG_REQUIRE(bytestring) +AC_GHC_PKG_REQUIRE(utf8-string) + +# extra modules for confd functionality +HTOOLS_REGEX_PCRE=-DNO_REGEX_PCRE +has_confd=False +if test "$enable_confd" != no; then + CONFD_PKG= + AC_GHC_PKG_CHECK([regex-pcre], [HTOOLS_REGEX_PCRE=], + [CONFD_PKG="$CONFD_PKG regex-pcre"]) + AC_GHC_PKG_CHECK([hslogger], [], [CONFD_PKG="$CONFD_PKG hslogger"]) + AC_GHC_PKG_CHECK([Crypto], [], [CONFD_PKG="$CONFD_PKG Crypto"]) + AC_GHC_PKG_CHECK([text], [], [CONFD_PKG="$CONFD_PKG text"]) + AC_GHC_PKG_CHECK([hinotify], [], [CONFD_PKG="$CONFD_PKG hinotify"]) + if test -z "$CONFD_PKG"; then + has_confd=True + elif test "$enable_confd" = check; then + AC_MSG_WARN(m4_normalize([The required extra libraries for confd were + not found ($CONFD_PKG), confd disabled])) else - # we leave the other modules to be auto-selected - HTOOLS_MODULES="-package $GHC_PKG_PARALLEL" - fi - if test -z "$GHC_PKG_QUICKCHECK"; then - AC_MSG_WARN(m4_normalize([The QuickCheck 2.x module was not found, - you won't be able to run Haskell unittests])) + AC_MSG_FAILURE(m4_normalize([The confd functionality was requested, but + required libraries were not found: + $CONFD_PKG])) fi fi -AC_SUBST(HTOOLS_MODULES) -AC_SUBST(GHC_PKG_QUICKCHECK) - -if test "$enable_htools" != "no"; then - if test -z "$GHC" || test -z "$HTOOLS_MODULES"; then - AC_MSG_WARN(m4_normalize([Haskell compiler/required libraries not found, - htools compilation disabled])) +AC_SUBST(HTOOLS_REGEX_PCRE) +if test "$has_confd" = True; then + AC_MSG_NOTICE([Enabling confd usage]) +fi +AC_SUBST(ENABLE_CONFD, $has_confd) +AM_CONDITIONAL([ENABLE_CONFD], [test x$has_confd = xTrue]) + +#extra modules for monitoring agent functionality +has_monitoring=False +if test "$enable_monitoring" != no; then + MONITORING_PKG= + AC_GHC_PKG_CHECK([attoparsec], [], + [MONITORING_PKG="$MONITORING_PKG attoparsec"]) + if test -z "$MONITORING_PKG"; then + has_monitoring=True + elif test "$enable_monitoring" = check; then + AC_MSG_WARN(m4_normalize([The required extra libraries for the monitoring + agent were not found ($MONITORING_PKG), + monitoring disabled])) else - HTOOLS=yes + AC_MSG_FAILURE(m4_normalize([The monitoring functionality was requested, but + required libraries were not found: + $MONITORING_PKG])) fi fi +if test "$has_monitoring" = True; then + AC_MSG_NOTICE([Enabling the monitoring agent usage]) +fi +AC_SUBST(ENABLE_MONITORING, $has_monitoring) +AM_CONDITIONAL([ENABLE_MONITORING], [test "$has_monitoring" = True]) + +# development modules +HTOOLS_NODEV= +AC_GHC_PKG_CHECK([QuickCheck-2.*], [], [HTOOLS_NODEV=1], t) +AC_GHC_PKG_CHECK([test-framework-0.6*], [], [HTOOLS_NODEV=1], t) +AC_GHC_PKG_CHECK([test-framework-hunit], [], [HTOOLS_NODEV=1]) +AC_GHC_PKG_CHECK([test-framework-quickcheck2], [], [HTOOLS_NODEV=1]) +# FIXME: unify checks for non-test libraries (attoparsec, hinotify, ...) +# that are needed to execute the tests, avoiding the duplication +# of the checks. +AC_GHC_PKG_CHECK([attoparsec], [], [HTOOLS_NODEV=1]) +if test -n "$HTOOLS_NODEV"; then + AC_MSG_WARN(m4_normalize([Required development modules were not found, + you won't be able to run Haskell unittests])) +else + AC_MSG_NOTICE([Haskell development modules found, unittests enabled]) +fi +AC_SUBST(HTOOLS_NODEV) + +HTOOLS=yes AC_SUBST(HTOOLS) +# --enable-split-query +ENABLE_SPLIT_QUERY= +AC_ARG_ENABLE([split-query], + [AS_HELP_STRING([--enable-split-query], + [enable use of custom query daemon via confd])], + [[case "$enableval" in + no) + enable_split_query=False + ;; + yes) + enable_split_query=True + ;; + *) + echo "Invalid value for enable-confd '$enableval'" + exit 1 + ;; + esac + ]], + [[case "x${has_confd}x${HTOOLS_NOCURL}x" in + xTruexx) + enable_split_query=True + ;; + *) + enable_split_query=False + ;; + esac]]) +AC_SUBST(ENABLE_SPLIT_QUERY, $enable_split_query) + +if test x$enable_split_query = xTrue -a x$has_confd != xTrue; then + AC_MSG_ERROR([Split queries require the confd daemon]) +fi + +if test x$enable_split_query = xTrue -a x$HTOOLS_NOCURL != x; then + AC_MSG_ERROR([Split queries require the htools-rapi feature (curl library)]) +fi + +if test x$enable_split_query = xTrue; then + AC_MSG_NOTICE([Split query functionality enabled]) +fi + # Check for HsColour HTOOLS_APIDOC=no AC_ARG_VAR(HSCOLOUR, [HsColour path]) @@ -564,29 +623,26 @@ if test -z "$HADDOCK"; then AC_MSG_WARN(m4_normalize([haddock not found, htools API documentation will not be generated])) fi -if test "$HADDOCK" && test "$HSCOLOUR"; then +if test -n "$HADDOCK" && test -n "$HSCOLOUR"; then HTOOLS_APIDOC=yes fi AC_SUBST(HTOOLS_APIDOC) # Check for hlint -HLINT=no AC_ARG_VAR(HLINT, [hlint path]) AC_PATH_PROG(HLINT, [hlint], []) if test -z "$HLINT"; then AC_MSG_WARN([hlint not found, checking code will not be possible]) fi -fi # end if enable_htools, define automake conditions - -if test "$HTOOLS" != "yes" && test "$ENABLE_CONFD" = "True"; then - AC_MSG_ERROR(m4_normalize([cannot enable ganeti-confd if - htools support is not enabled])) +if test "$HTOOLS" != yes && test "$ENABLE_CONFD" = True; then + AC_MSG_ERROR(m4_normalize([cannot enable ganeti-confd if + htools support is not enabled])) fi -AM_CONDITIONAL([WANT_HTOOLS], [test x$HTOOLS = xyes]) -AM_CONDITIONAL([WANT_HTOOLSTESTS], [test "x$GHC_PKG_QUICKCHECK" != x]) -AM_CONDITIONAL([WANT_HTOOLSAPIDOC], [test x$HTOOLS_APIDOC = xyes]) +AM_CONDITIONAL([WANT_HTOOLS], [test "$HTOOLS" = yes]) +AM_CONDITIONAL([WANT_HTOOLSTESTS], [test "x$HTOOLS_NODEV" = x]) +AM_CONDITIONAL([WANT_HTOOLSAPIDOC], [test "$HTOOLS_APIDOC" = yes]) AM_CONDITIONAL([HAS_HLINT], [test "$HLINT"]) # Check for fakeroot @@ -663,15 +719,10 @@ AC_PYTHON_MODULE(simplejson, t) AC_PYTHON_MODULE(pyparsing, t) AC_PYTHON_MODULE(pyinotify, t) AC_PYTHON_MODULE(pycurl, t) +AC_PYTHON_MODULE(bitarray, t) +AC_PYTHON_MODULE(ipaddr, t) AC_PYTHON_MODULE(affinity) - -# This is optional but then we've limited functionality AC_PYTHON_MODULE(paramiko) -if test "$HAVE_PYMOD_PARAMIKO" = "no"; then - AC_MSG_WARN(m4_normalize([You do not have Paramiko installed. While this is - optional you have to configure SSH and the node - daemon on the joining nodes yourself.])) -fi AC_CONFIG_FILES([ Makefile ])