[Scummvm-git-logs] scummvm master -> 2615c684ed10ee512f9460b0959582ed1fbad496
sev-
sev at scummvm.org
Sun Nov 17 22:23:10 CET 2019
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
f204867cda BUILD: Disable updates if no Sparkle implementation is available
2615c684ed BUILD: Properly disable updates if no Sparkle implementation is available
Commit: f204867cdaf9f54565a8aa396e902052c4cc59c5
https://github.com/scummvm/scummvm/commit/f204867cdaf9f54565a8aa396e902052c4cc59c5
Author: Lothar Serra Mari (serra at scummvm.org)
Date: 2019-11-17T22:23:04+01:00
Commit Message:
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.
Changed paths:
configure
diff --git a/configure b/configure
index 146c424..b4bffeb 100755
--- a/configure
+++ b/configure
@@ -5572,6 +5572,7 @@ if test "$_updates" = yes; then
if test "$_sparkle" = yes; then
echo "Sparkle"
else
+ _updates=no;
echo "$_updates"
fi
else
Commit: 2615c684ed10ee512f9460b0959582ed1fbad496
https://github.com/scummvm/scummvm/commit/2615c684ed10ee512f9460b0959582ed1fbad496
Author: Lothar Serra Mari (serra at scummvm.org)
Date: 2019-11-17T22:23:04+01:00
Commit Message:
BUILD: Properly disable updates if no Sparkle implementation is available
Changed paths:
configure
diff --git a/configure b/configure
index b4bffeb..baa4715 100755
--- a/configure
+++ b/configure
@@ -5567,7 +5567,6 @@ echo "$_bink"
# Check whether to build updates support
#
echo_n "Building updates support... "
-define_in_config_if_yes $_updates 'USE_UPDATES'
if test "$_updates" = yes; then
if test "$_sparkle" = yes; then
echo "Sparkle"
@@ -5578,6 +5577,7 @@ if test "$_updates" = yes; then
else
echo "$_updates"
fi
+define_in_config_if_yes $_updates 'USE_UPDATES'
#
# Figure out installation directories
More information about the Scummvm-git-logs
mailing list