summaryrefslogtreecommitdiffstats
path: root/waftools
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2018-08-16 11:30:02 +1000
committerJan Ekström <jeebjp@gmail.com>2018-08-26 15:49:22 +0300
commit91786fa99c15dc64d3bce4be413326ba2dbe59f7 (patch)
treec75f95055b79cb8cbb00dc8e56d8e4e7631dd410 /waftools
parent1890ca024e541e1d07bdee242b75b24391b4434a (diff)
downloadmpv-91786fa99c15dc64d3bce4be413326ba2dbe59f7.tar.bz2
mpv-91786fa99c15dc64d3bce4be413326ba2dbe59f7.tar.xz
Revert "ao_openal: enable building on OSX"
This reverts commit af6126adbe61fb2b6cc780025246d33df93072e6. Apple's OpenAL support is ridiculously out of date, revert back to just using OpenAL Soft on macOS (fixes #4645).
Diffstat (limited to 'waftools')
-rw-r--r--waftools/checks/custom.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py
index d887df5851..06a7c70769 100644
--- a/waftools/checks/custom.py
+++ b/waftools/checks/custom.py
@@ -4,7 +4,7 @@ from waflib import Utils
import os
__all__ = ["check_pthreads", "check_iconv", "check_lua",
- "check_cocoa", "check_openal", "check_wl_protocols"]
+ "check_cocoa", "check_wl_protocols"]
pthreads_program = load_fragment('pthreads.c')
@@ -111,14 +111,3 @@ def check_cocoa(ctx, dependency_identifier):
])
return res
-
-def check_openal(ctx, dependency_identifier):
- checks = [
- check_pkg_config('openal', '>= 1.13'),
- check_statement(['OpenAL/AL.h'], 'int i = AL_VERSION', framework='OpenAL')
- ]
-
- for fn in checks:
- if fn(ctx, dependency_identifier):
- return True
- return False