summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorgpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-24 17:29:37 +0000
committergpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-24 17:29:37 +0000
commit0cee72fb5b0e13c6f5c9b6c6a3f597e926a3c795 (patch)
tree1edd7e980b0956ff52b1bd690127b70332395892 /configure
parent3fa1eb2a60cdb8822753d1314f31a0676161e74d (diff)
downloadmpv-0cee72fb5b0e13c6f5c9b6c6a3f597e926a3c795.tar.bz2
mpv-0cee72fb5b0e13c6f5c9b6c6a3f597e926a3c795.tar.xz
now that we have a specific check to enable ao_macosx or not, don't let test
for vo_quartz set if ao_macosx should be enabled or not: it's redundant. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28030 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 4 insertions, 10 deletions
diff --git a/configure b/configure
index cf90bc85b7..b34ed5439f 100755
--- a/configure
+++ b/configure
@@ -3606,21 +3606,15 @@ int main(void) {
return 0;
}
EOF
- if cc_check -framework Carbon -framework QuickTime -framework CoreAudio; then
- _ld_extra="$_ld_extra -framework Carbon -framework QuickTime -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
- _coreaudio=yes
- _def_coreaudio='#define CONFIG_COREAUDIO 1'
- _aosrc="$_aosrc ao_macosx.c"
- _aomodules="macosx $_aomodules"
+ if cc_check -framework Carbon -framework QuickTime; then
+ _ld_extra="$_ld_extra -framework Carbon -framework QuickTime"
+ _quartz=yes
_def_quartz='#define CONFIG_QUARTZ 1'
_vosrc="$_vosrc vo_quartz.c"
_vomodules="quartz $_vomodules"
_def_quicktime='#define CONFIG_QUICKTIME 1'
else
- _macosx=no
- _coreaudio=no
- _def_coreaudio='#undef CONFIG_COREAUDIO'
- _noaomodules="macosx $_noaomodules"
+ _quartz=yes
_def_quartz='#undef CONFIG_QUARTZ'
_novomodules="quartz $_novomodules"
_def_quicktime='#undef CONFIG_QUICKTIME'