Commit 7f73d8cc authored by Felix Paul Kühne's avatar Felix Paul Kühne

configure.ac: fix linking the OSX UI module if the AVFoundation framework...

configure.ac: fix linking the OSX UI module if the AVFoundation framework isn't present (read: OSX 10.6)
parent 6479d47f
......@@ -3760,7 +3760,10 @@ then
VLC_ADD_OBJCFLAGS([macosx], [-fobjc-exceptions] )
VLC_ADD_PLUGIN([macosx])
VLC_ADD_LIBS([macosx], [-Wl,-framework,QTKit -Wl,-framework,AVFoundation -Wl,-framework,IOKit -Wl,-framework,AddressBook -Wl,-framework,WebKit -Wl,-framework,CoreAudio -Wl,-framework,SystemConfiguration -Wl,-framework,ScriptingBridge])
VLC_ADD_LIBS([macosx], [-Wl,-framework,QTKit -Wl,-framework,IOKit -Wl,-framework,AddressBook -Wl,-framework,WebKit -Wl,-framework,CoreAudio -Wl,-framework,SystemConfiguration -Wl,-framework,ScriptingBridge])
AC_CHECK_HEADERS(AVFoundation/AVFoundation.h,
[VLC_ADD_LIBS([macosx],[-Wl,-framework,AVFoundation])])
if test ! -d ${CONTRIB_DIR}/Sparkle.framework
then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment