summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'