[vlc-commits] macosx: remove Growl framework references

Marvin Scholz git at videolan.org
Tue Apr 10 01:44:04 CEST 2018


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Tue Apr 10 01:27:32 2018 +0200| [5ff65e9a81d3d7eb998ee686d67f215bb3760b93] | committer: Marvin Scholz

macosx: remove Growl framework references

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5ff65e9a81d3d7eb998ee686d67f215bb3760b93
---

 extras/package/macosx/VLC.entitlements              | 4 ----
 extras/package/macosx/VLC.xcodeproj/project.pbxproj | 2 --
 extras/package/macosx/codesign.sh                   | 3 ---
 extras/package/macosx/package.mak                   | 1 -
 4 files changed, 10 deletions(-)

diff --git a/extras/package/macosx/VLC.entitlements b/extras/package/macosx/VLC.entitlements
index 2a63086079..98f34b3c29 100644
--- a/extras/package/macosx/VLC.entitlements
+++ b/extras/package/macosx/VLC.entitlements
@@ -30,9 +30,5 @@
 	<string>/</string>
 	<key>com.apple.security.temporary-exception.files.absolute-path.read-only</key>
 	<string>/tmp/</string>
-	<key>com.apple.security.temporary-exception.apple-events</key>
-	<string>com.Growl.GrowlHelperApp</string>
-	<key>com.apple.security.temporary-exception.mach-lookup.global-name</key>
-	<string>GrowlApplicationBridgePathway</string>
 </dict>
 </plist>
diff --git a/extras/package/macosx/VLC.xcodeproj/project.pbxproj b/extras/package/macosx/VLC.xcodeproj/project.pbxproj
index d1ca0fdcca..1567193e82 100644
--- a/extras/package/macosx/VLC.xcodeproj/project.pbxproj
+++ b/extras/package/macosx/VLC.xcodeproj/project.pbxproj
@@ -499,7 +499,6 @@
 		CC269A4615E7947F00F2FDC9 /* VLCStringUtility.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VLCStringUtility.h; sourceTree = "<group>"; };
 		CC269A4715E7947F00F2FDC9 /* VLCStringUtility.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLCStringUtility.m; sourceTree = "<group>"; };
 		CC3DC89B0A7CDB9600B53F32 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = "<absolute>"; };
-		CC3F9F851350B2A000B0E885 /* Growl.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Growl.framework; path = ../../../contrib/Growl.framework; sourceTree = SOURCE_ROOT; };
 		CC426FD01020D44F00A32659 /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Sparkle.framework; path = ../../../contrib/Sparkle.framework; sourceTree = SOURCE_ROOT; };
 		CC448A5A13B61D49009F72E0 /* VLCMainMenu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VLCMainMenu.h; sourceTree = "<group>"; };
 		CC448A5B13B61D49009F72E0 /* VLCMainMenu.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLCMainMenu.m; sourceTree = "<group>"; };
@@ -749,7 +748,6 @@
 		1058C7ACFEA557BF11CA2CBB /* Linked Frameworks */ = {
 			isa = PBXGroup;
 			children = (
-				CC3F9F851350B2A000B0E885 /* Growl.framework */,
 				CC426FD01020D44F00A32659 /* Sparkle.framework */,
 				CCBE999E0F922C51000705F8 /* CoreServices.framework */,
 				CC962E2C0CC7992800A56695 /* WebKit.framework */,
diff --git a/extras/package/macosx/codesign.sh b/extras/package/macosx/codesign.sh
index 07b0fc88d0..90de61db81 100755
--- a/extras/package/macosx/codesign.sh
+++ b/extras/package/macosx/codesign.sh
@@ -95,8 +95,6 @@ find VLC.app/Contents/Frameworks -type f -name "*.txt" -exec rm '{}' \;
 
 info "Signing frameworks"
 
-sign "VLC.app/Contents/Frameworks/Growl.framework/Versions/A" "com.growl.growlframework"
-
 sign "VLC.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop"
 sign "VLC.app/Contents/Frameworks/Sparkle.framework/Resources/Autoupdate.app" "org.sparkle-project.Sparkle.Autoupdate"
 sign "VLC.app/Contents/Frameworks/Sparkle.framework/Versions/A" "org.sparkle-project.Sparkle"
@@ -179,7 +177,6 @@ if [ -e "VLC.app/Contents/Frameworks/Breakpad.framework" ]; then
     codesign --verify -vv VLC.app/Contents/Frameworks/Breakpad.framework
 fi
 
-codesign --verify -vv VLC.app/Contents/Frameworks/Growl.framework
 codesign --verify -vv VLC.app/Contents/Frameworks/Sparkle.framework
 
 info "Validating autoupdate app"
diff --git a/extras/package/macosx/package.mak b/extras/package/macosx/package.mak
index e479e49f3c..22c9688da9 100644
--- a/extras/package/macosx/package.mak
+++ b/extras/package/macosx/package.mak
@@ -23,7 +23,6 @@ VLC.app: install
 	xcrun plutil -convert binary1 $@/Contents/Info.plist
 	## Create Frameworks dir and copy required ones
 	mkdir -p $@/Contents/Frameworks
-	cp -R $(CONTRIB_DIR)/Frameworks/Growl.framework $@/Contents/Frameworks
 if HAVE_SPARKLE
 	cp -R $(CONTRIB_DIR)/Frameworks/Sparkle.framework $@/Contents/Frameworks
 endif



More information about the vlc-commits mailing list