commit 741ecb32d8d3a1737ab1b10348487a52a85d2f40
parent b3d3f6ec12c87489602d3ecdc11ae4e69de70027
Author: Paul <paul@claws-mail.org>
Date: Mon, 21 Nov 2022 16:36:48 +0000
don't attempt to build the perl plugin if ExtUtils::Embed is not installed
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -1819,6 +1819,9 @@ if test x"$enable_perl_plugin" != xno; then
if test x"$HAVE_LIBPERL" = xno; then
dependencies_missing="libperl $dependencies_missing"
fi
+ if test x"$PERL_MOD_EXT_UTILS_EMBED" = xno; then
+ dependencies_missing="ExtUtils::Embed $dependencies_missing"
+ fi
if test x"$dependencies_missing" = x; then
PLUGINS="$PLUGINS perl"