BUILD: Disable updates if no Sparkle implementation is available

Currently, --enable-release always enables updates even on unsupported platforms.
This additional check disables updates entirely if no proper sparkle implementation
is found.

Fixes #11217.
This commit is contained in:
Lothar Serra Mari 2019-11-16 15:47:23 +01:00 committed by Eugene Sandulenko
parent 54583f98ef
commit f204867cda

1
configure vendored
View File

@ -5572,6 +5572,7 @@ if test "$_updates" = yes; then
if test "$_sparkle" = yes; then
echo "Sparkle"
else
_updates=no;
echo "$_updates"
fi
else