From: John Wolfe Date: Thu, 20 Jan 2022 19:40:15 +0000 (-0800) Subject: Restrict Enable Salt Minion feature to x86_64 systems. X-Git-Tag: stable-12.1.0~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87396d0925299645ce77491ca8ad30ad1cb01c85;p=thirdparty%2Fopen-vm-tools.git Restrict Enable Salt Minion feature to x86_64 systems. Currently Salt Minion is available only for x86_64 systems. Update configure.ac to exclude ENABLE_SALTMINION from ARM and 32-bit systems. --- diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 2c4f097f9..3675d484a 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -1702,7 +1702,7 @@ AM_CONDITIONAL(ENABLE_VMWGFXCTRL, test "x$enable_vmwgfxctrl" = "xyes") AM_CONDITIONAL(VGAUTH_USE_CXX, test "$with_icu" = "yes" -o "$use_xmlsec1" != "yes") AM_CONDITIONAL(ENABLE_LIBAPPMONITOR, test "$enable_libappmonitor" = "yes") AM_CONDITIONAL(ENABLE_SDMP, test "$enable_servicediscovery" = "yes") -AM_CONDITIONAL(ENABLE_SALTMINION, test "$enable_saltminion" = "yes") +AM_CONDITIONAL(ENABLE_SALTMINION, test "$enable_saltminion" = "yes" -a \( "$arch" = "x64" \) ) if test "$have_xsm" != "yes"; then AC_DEFINE([NO_XSM], 1, [])