[vlc-commits] audio_output: Makefile.am: fix audiounit_ios link

Alexandre Janniaux git at videolan.org
Tue May 19 16:20:59 CEST 2020


vlc | branch: master | Alexandre Janniaux <ajanni at videolabs.io> | Mon May  4 14:23:48 2020 +0200| [e69c8fbacd8edc031ed6ada3babab39f367e3e95] | committer: Alexandre Janniaux

audio_output: Makefile.am: fix audiounit_ios link

Remove AudioUnit framework as it is not found on iOS and only
AudioToolbox is needed.

In addition CoreServices cannot be linked for the iOS/tvOS targets as it
is available starting with iOS/tvOS 12.0+.

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

 modules/audio_output/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/audio_output/Makefile.am b/modules/audio_output/Makefile.am
index 4af4d78c5f..7ed509e734 100644
--- a/modules/audio_output/Makefile.am
+++ b/modules/audio_output/Makefile.am
@@ -110,7 +110,7 @@ endif
 libaudiounit_ios_plugin_la_SOURCES = audio_output/audiounit_ios.m \
 	audio_output/coreaudio_common.c audio_output/coreaudio_common.h
 libaudiounit_ios_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(aoutdir)' \
-	-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,CoreServices,-framework,UIKit,-framework,AVFoundation
+	-Wl,-framework,Foundation,-framework,CoreAudio,-framework,AudioToolbox,-framework,UIKit,-framework,AVFoundation
 if HAVE_IOS
 aout_LTLIBRARIES += libaudiounit_ios_plugin.la
 endif



More information about the vlc-commits mailing list