[Scummvm-git-logs] scummvm master -> 6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1

sev- sev at scummvm.org
Sat Oct 12 14:30:58 CEST 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6ab0ce1b02 MACOS: Add default path when looking for Sparkle framework


Commit: 6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1
    https://github.com/scummvm/scummvm/commit/6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2019-10-12T14:27:28+02:00

Commit Message:
MACOS: Add default path when looking for Sparkle framework

Changed paths:
    configure


diff --git a/configure b/configure
index 86d80c4..b5c4271 100755
--- a/configure
+++ b/configure
@@ -4696,10 +4696,11 @@ case $_host_os in
 		if test "$_updates" = no; then
 			_sparkle=no
 		else
-			if test ! -z $_sparklepath ; then
-				SPARKLE_CFLAGS="-F$_sparklepath"
-				SPARKLE_LIBS="-F$_sparklepath"
+			if test -z $_sparklepath; then
+				_sparklepath=/Library/Frameworks
 			fi
+			SPARKLE_CFLAGS="-F$_sparklepath"
+			SPARKLE_LIBS="-F$_sparklepath"
 			if test "$_sparkle" = auto ; then
 				_sparkle=no
 				cat > $TMPC << EOF





More information about the Scummvm-git-logs mailing list