Revision: 28454
          http://sourceforge.net/p/bibdesk/svn/28454
Author:   hofman
Date:     2023-11-19 15:52:30 +0000 (Sun, 19 Nov 2023)
Log Message:
-----------
Remove support for legacy SUUpdater, delta, and package unarchiver. Add unused 
typedef to silence the compiler warnings.

Modified Paths:
--------------
    
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SPUXarDeltaArchive.m
    
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUFlatPackageUnarchiver.m
    
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUGuidedPackageInstaller.m
    
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUPackageInstaller.m
    
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Configurations/ConfigCommon.xcconfig

Modified: 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SPUXarDeltaArchive.m
===================================================================
--- 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SPUXarDeltaArchive.m   
    2023-11-19 15:00:52 UTC (rev 28453)
+++ 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SPUXarDeltaArchive.m   
    2023-11-19 15:52:30 UTC (rev 28454)
@@ -410,4 +410,8 @@
 
 @end
 
+#else
+
+typedef int silence_iso_compiler_warning;
+
 #endif

Modified: 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUFlatPackageUnarchiver.m
===================================================================
--- 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUFlatPackageUnarchiver.m
  2023-11-19 15:00:52 UTC (rev 28453)
+++ 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUFlatPackageUnarchiver.m
  2023-11-19 15:52:30 UTC (rev 28454)
@@ -62,4 +62,8 @@
 
 @end
 
+#else
+
+typedef int silence_iso_compiler_warning;
+
 #endif

Modified: 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUGuidedPackageInstaller.m
===================================================================
--- 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUGuidedPackageInstaller.m
 2023-11-19 15:00:52 UTC (rev 28453)
+++ 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUGuidedPackageInstaller.m
 2023-11-19 15:52:30 UTC (rev 28454)
@@ -89,4 +89,8 @@
 
 @end
 
+#else
+
+typedef int silence_iso_compiler_warning;
+
 #endif

Modified: 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUPackageInstaller.m
===================================================================
--- 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUPackageInstaller.m   
    2023-11-19 15:00:52 UTC (rev 28453)
+++ 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Autoupdate/SUPackageInstaller.m   
    2023-11-19 15:52:30 UTC (rev 28454)
@@ -78,4 +78,8 @@
 
 @end
 
+#else
+
+typedef int silence_iso_compiler_warning;
+
 #endif

Modified: 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Configurations/ConfigCommon.xcconfig
===================================================================
--- 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Configurations/ConfigCommon.xcconfig
  2023-11-19 15:00:52 UTC (rev 28453)
+++ 
trunk/bibdesk_vendorsrc/andymatuschak/Sparkle/Configurations/ConfigCommon.xcconfig
  2023-11-19 15:52:30 UTC (rev 28454)
@@ -10,7 +10,7 @@
 SPARKLE_EMBED_INSTALLER_CONNECTION_XPC_SERVICE = 0
 
 // Set to 0 to disable building legacy 1.x SUUpdater stub
-SPARKLE_BUILD_LEGACY_SUUPDATER = 1
+SPARKLE_BUILD_LEGACY_SUUPDATER = 0
 
 // Set to 0 to not build legacy DSA signing support
 // Don't disable this if you haven't migrated to EdDSA yet or if you support 
updating
@@ -24,14 +24,14 @@
 GENERATE_APPCAST_BUILD_LEGACY_DSA_SUPPORT = 1
 
 // Set to 0 to not build legacy / xar based delta update support
-SPARKLE_BUILD_LEGACY_DELTA_SUPPORT = 1
+SPARKLE_BUILD_LEGACY_DELTA_SUPPORT = 0
 
 // Set to 0 to not build bzip2 support for version 3 delta based updates
-SPARKLE_BUILD_BZIP2_DELTA_SUPPORT = 1
+SPARKLE_BUILD_BZIP2_DELTA_SUPPORT = 0
 
 // Set to 0 to not build support for package (pkg) based installations
 // If this is disabled, this requires an update to OTHER_SWIFT_FLAGS_COMMON 
below
-SPARKLE_BUILD_PACKAGE_SUPPORT = 1
+SPARKLE_BUILD_PACKAGE_SUPPORT = 0
 
 // Set to 0 to not build support for extracting updates from disk images (dmgs)
 // If this is disabled, this requires an update to OTHER_SWIFT_FLAGS_COMMON 
below
@@ -48,7 +48,7 @@
 // If GENERATE_APPCAST_BUILD_LEGACY_DSA_SUPPORT is set to 0, remove 
-DGENERATE_APPCAST_BUILD_LEGACY_DSA_SUPPORT
 // If SPARKLE_BUILD_PACKAGE_SUPPORT is set to 0, remove 
-DSPARKLE_BUILD_PACKAGE_SUPPORT
 // If SPARKLE_BUILD_DMG_SUPPORT is set to 0, remove -DSPARKLE_BUILD_DMG_SUPPORT
-OTHER_SWIFT_FLAGS_COMMON = -DSPARKLE_BUILD_LEGACY_DSA_SUPPORT 
-DGENERATE_APPCAST_BUILD_LEGACY_DSA_SUPPORT -DSPARKLE_BUILD_PACKAGE_SUPPORT 
-DSPARKLE_BUILD_DMG_SUPPORT
+OTHER_SWIFT_FLAGS_COMMON = -DSPARKLE_BUILD_LEGACY_DSA_SUPPORT 
-DGENERATE_APPCAST_BUILD_LEGACY_DSA_SUPPORT -DSPARKLE_BUILD_DMG_SUPPORT
 
 // Minimum supported macOS version
 MACOSX_DEPLOYMENT_TARGET = 10.13

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to