mirror of https://github.com/mpv-player/mpv
wscript: mark subprocess as required
We either need to be on Windows, or have posix_spawn available. If someone can come up with a system that is POSIX, but does not provide posix_spawn, we could make it optional.
This commit is contained in:
parent
eb6b2b6e50
commit
f04e7bc529
1
wscript
1
wscript
|
@ -227,6 +227,7 @@ iconv support use --disable-iconv.",
|
||||||
'desc': 'posix_spawnp() or MinGW',
|
'desc': 'posix_spawnp() or MinGW',
|
||||||
'func': check_true,
|
'func': check_true,
|
||||||
'deps_any': ['posix-spawn', 'mingw'],
|
'deps_any': ['posix-spawn', 'mingw'],
|
||||||
|
'req': True,
|
||||||
}, {
|
}, {
|
||||||
'name': 'glob',
|
'name': 'glob',
|
||||||
'desc': 'glob()',
|
'desc': 'glob()',
|
||||||
|
|
Loading…
Reference in New Issue