From 3fa1eb2a60cdb8822753d1314f31a0676161e74d Mon Sep 17 00:00:00 2001 From: gpoirier Date: Mon, 24 Nov 2008 17:27:05 +0000 Subject: add specific test to check if we can enable ao_macosx not matter how vo_quartz test may turn out git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28029 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 547369c485..cf90bc85b7 100755 --- a/configure +++ b/configure @@ -3582,9 +3582,23 @@ if test "$_macosx" = auto ; then fi if test "$_macosx" = yes ; then cat > $TMPC < +int main(void) { return 0; } +EOF + if cc_check -framework CoreAudio; then + _ld_extra="$_ld_extra -framework CoreAudio -framework AudioUnit -framework AudioToolbox" + _coreaudio=yes + _def_coreaudio='#define CONFIG_COREAUDIO 1' + _aosrc="$_aosrc ao_macosx.c" + _aomodules="macosx $_aomodules" + else + _coreaudio=no + _def_coreaudio='#undef CONFIG_COREAUDIO' + _noaomodules="macosx $_noaomodules" + fi + cat > $TMPC < #include -#include int main(void) { EnterMovies(); ExitMovies(); -- cgit v1.2.3