summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-10 03:16:43 +0200
committerwm4 <wm4@nowhere>2014-09-10 03:24:45 +0200
commite9b756c7ad7d51b41b2ccf0f72eb904b0eea2169 (patch)
tree10f6909622b28c8e5e7376137d1651e44055d50f /wscript
parent564b957cc31a33124a935ea8678e5bbb710fc082 (diff)
downloadmpv-e9b756c7ad7d51b41b2ccf0f72eb904b0eea2169.tar.bz2
mpv-e9b756c7ad7d51b41b2ccf0f72eb904b0eea2169.tar.xz
input: remove central select() call
This is now unused. Get rid of it and all surrounding infrastructure, and replace the remaining "wakeup pipe" with a semaphore.
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 0 insertions, 7 deletions
diff --git a/wscript b/wscript
index 7d52cdc043..0b64d7a0b1 100644
--- a/wscript
+++ b/wscript
@@ -186,13 +186,6 @@ iconv support use --disable-iconv.",
'func': check_statement(['sys/types.h', 'sys/ipc.h', 'sys/shm.h'],
'shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0)')
}, {
- 'name': 'posix-select',
- 'desc': 'POSIX select()',
- 'func': check_statement('sys/select.h', """
- int rc;
- rc = select(0, (fd_set *)(0), (fd_set *)(0), (fd_set *)(0),
- (struct timeval *)(0))""")
- }, {
'name': 'glob',
'desc': 'glob()',
'func': check_statement('glob.h', 'glob("filename", 0, 0, 0)')