summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-02-07 16:51:47 +0100
committerwm4 <wm4@nowhere>2016-02-07 16:51:47 +0100
commitf04e7bc529f935002086cb25c936111aa266dedb (patch)
treea6c4507485763acd4a0f435235623e4ab992733f
parenteb6b2b6e50e6e3d3db41190ad818d8b966750734 (diff)
downloadmpv-f04e7bc529f935002086cb25c936111aa266dedb.tar.bz2
mpv-f04e7bc529f935002086cb25c936111aa266dedb.tar.xz
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.
-rw-r--r--wscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript b/wscript
index c6f287ffa1..fa3d98d25e 100644
--- a/wscript
+++ b/wscript
@@ -227,6 +227,7 @@ iconv support use --disable-iconv.",
'desc': 'posix_spawnp() or MinGW',
'func': check_true,
'deps_any': ['posix-spawn', 'mingw'],
+ 'req': True,
}, {
'name': 'glob',
'desc': 'glob()',