commit f081d0f1eb701952f329e32b901ecd3b4282551f
parent da97dac531e28bb8f607b02c14adfc738fb2b86d
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Wed, 19 Apr 2017 19:20:06 +0200
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.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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"