From f081d0f1eb701952f329e32b901ecd3b4282551f Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Wed, 19 Apr 2017 19:20:06 +0200 Subject: [PATCH] Fix configure logic around tnef_parse plugin. If the plugin is explicitly enabled, but its dependencies are missing, error out instead of warning and continuing. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ecdd2850d..dd903f463 100644 --- a/configure.ac +++ b/configure.ac @@ -1918,7 +1918,7 @@ if test x"$enable_tnef_parse_plugin" != xno; then MISSING_DEPS_PLUGINS="$MISSING_DEPS_PLUGINS tnef_parse" else AC_MSG_RESULT(no) - AC_MSG_WARN(Plugin tnef_parse will not be built; missing $dependencies_missing") + AC_MSG_ERROR(Plugin tnef_parse will not be built; missing $dependencies_missing") fi else DISABLED_PLUGINS="$DISABLED_PLUGINS tnef_parse" -- 2.25.1