From 6060ea898fda499211c9d5030fff41d58f899fb0 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Fri, 1 Apr 2016 14:53:48 +0200 Subject: build: Check for conflicting trust model options. * configure.ac: Disable TOFU if configured without trust models, and check for conflicting options. Signed-off-by: Justus Winter --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 003e5091a..0163dde0c 100644 --- a/configure.ac +++ b/configure.ac @@ -263,8 +263,11 @@ AC_MSG_CHECKING([whether to enable TOFU]) AC_ARG_ENABLE(tofu, AC_HELP_STRING([--disable-tofu], [disable the TOFU trust model]), - use_tofu=$enableval, use_tofu=yes) + use_tofu=$enableval, use_tofu=$use_trust_models) AC_MSG_RESULT($use_tofu) +if test "$use_trust_models" = no && test "$use_tofu" = yes; then + AC_MSG_ERROR([both --disable-trust-models and --enable-tofu given]) +fi -- cgit v1.2.3