Revert "CONFIGURE: Do not enable Sparkle in release mode on platforms without it. Fixes #11217"

The commit had the effect of disabling update altogether as there is
no check for the _updates variable and anything that is not "yes"
disables updates. Instead there is a test for the _sparkle variable
(that is already set to auto by default).

The two variables exist because potentially we could use something
other than Sparkle for the updates.

Also the bug was already fixed by rootfather in commits f204867 and
2615c68 by making sure that _updates is false if _sparkle is false.

This reverts commit 581b4ca5947ced7c8db62147eafc54694d4a4f31.
This commit is contained in:
Thierry Crozat 2020-08-26 23:34:11 +01:00
parent c1c4320b34
commit 316edb3585

2
configure vendored
View File

@ -1463,7 +1463,7 @@ for ac_option in $@; do
--enable-release)
_release_build=yes
_optimizations=yes
_updates=auto
_updates=yes
;;
--disable-release)
_release_build=no