mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-11-03 23:53:55 +01:00 
			
		
		
		
	But, this time use a "C" wrapper as posited by Paul in: https://bugzilla.audacityteam.org/show_bug.cgi?id=543#c6 Doing so should bypass the execve()/decontruction issue and still allow entitlements to work. This also sets the build system to Legacy so that a "clean" action will not produce: error: Could not delete '...' because it was not created by the build system. And, I'm not sure why the deployment target was 10.9, but it should have been 10.7.
		
			
				
	
	
		
			17 lines
		
	
	
		
			547 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			547 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 | 
						|
<plist version="1.0">
 | 
						|
<dict>
 | 
						|
	<key>com.apple.security.cs.allow-dyld-environment-variables</key>
 | 
						|
	<true/>
 | 
						|
	<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
 | 
						|
	<true/>
 | 
						|
	<key>com.apple.security.cs.disable-executable-page-protection</key>
 | 
						|
	<true/>
 | 
						|
	<key>com.apple.security.cs.disable-library-validation</key>
 | 
						|
	<true/>
 | 
						|
	<key>com.apple.security.device.audio-input</key>
 | 
						|
	<true/>
 | 
						|
</dict>
 | 
						|
</plist>
 |