summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-05-01 00:55:13 +0200
committerwm4 <wm4@nowhere>2020-05-01 00:59:57 +0200
commit008faa3d7fd62c9e8af00281a04ed76db1b41391 (patch)
tree743eb383362e47200d7fd142b6d7470e8ce562db /wscript
parent4f0206ab045e65798eef7e6e1efe0d862fe7b7f7 (diff)
downloadmpv-008faa3d7fd62c9e8af00281a04ed76db1b41391.tar.bz2
mpv-008faa3d7fd62c9e8af00281a04ed76db1b41391.tar.xz
zimg: remove C11 aligned_alloc() requirement
It's not available on Windows because MinGW is fucking horrible and Microsoft are fucking assholes.
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 0 insertions, 6 deletions
diff --git a/wscript b/wscript
index eb68ab1f5d..2ef1c6b7da 100644
--- a/wscript
+++ b/wscript
@@ -224,11 +224,6 @@ main_dependencies = [
'req': True,
'fmsg': 'C11 atomics are required; you may need a newer compiler',
}, {
- # C11; technically we require C11, but aligned_alloc() is not in MinGW
- 'name': 'aligned_alloc',
- 'desc': 'C11 aligned_alloc()',
- 'func': check_statement('stdlib.h', 'aligned_alloc(1, 1)'),
- }, {
'name': 'librt',
'desc': 'linking with -lrt',
'deps': 'pthreads',
@@ -379,7 +374,6 @@ iconv support use --disable-iconv.",
'func': check_pkg_config('rubberband', '>= 1.8.0'),
}, {
'name': '--zimg',
- 'deps': 'aligned_alloc',
'desc': 'libzimg support (high quality software scaler)',
'func': check_pkg_config('zimg', '>= 2.9'),
}, {