summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-31 16:14:14 +0100
committerwm4 <wm4@nowhere>2015-01-31 16:14:14 +0100
commit6f1357d87622670c9fdcbf92230a641a180e246f (patch)
tree9978261df1d4b3df29a11fd0b9650065d5c444c3
parenta169a2fb7952f26face59828850ec622a69afe23 (diff)
downloadmpv-6f1357d87622670c9fdcbf92230a641a180e246f.tar.bz2
mpv-6f1357d87622670c9fdcbf92230a641a180e246f.tar.xz
build: fix v4l2 support on NetBSD
It was accidentally broken. Tested by a NetBSD user. May help with other BSDs.
-rw-r--r--wscript17
1 files changed, 12 insertions, 5 deletions
diff --git a/wscript b/wscript
index dbe43127f7..72604a0086 100644
--- a/wscript
+++ b/wscript
@@ -185,10 +185,6 @@ iconv support use --disable-iconv.",
'func': check_libs(['waio'],
check_statement('waio/waio.h', 'waio_alloc(0, 0, 0, 0)')),
}, {
- 'name': 'videoio',
- 'desc': 'videoio.h',
- 'func': check_headers('sys/videoio.h')
- }, {
'name': '--termios',
'desc': 'termios',
'func': check_headers('termios.h', 'sys/termios.h'),
@@ -725,14 +721,25 @@ radio_and_tv_features = [
'desc': 'TV interface',
'func': check_true,
}, {
+ 'name': 'sys_videoio_h',
+ 'desc': 'videoio.h',
+ 'func': check_cc(header_name=['sys/time.h', 'sys/videoio.h'])
+ }, {
+ 'name': 'videodev',
+ 'desc': 'videodev2.h',
+ 'func': check_cc(header_name=['sys/time.h', 'linux/videodev2.h']),
+ 'deps_neg': [ 'sys_videoio_h' ],
+ }, {
'name': '--tv-v4l2',
'desc': 'Video4Linux2 TV interface',
'deps': [ 'tv' ],
- 'func': check_cc(header_name=['sys/time.h', 'linux/videodev2.h'])
+ 'deps_any': [ 'sys_videoio_h', 'videodev' ],
+ 'func': check_true,
}, {
'name': '--libv4l2',
'desc': 'libv4l2 support',
'func': check_pkg_config('libv4l2'),
+ 'deps': [ 'tv-v4l2' ],
}, {
'name': '--pvr',
'desc': 'Video4Linux2 MPEG PVR interface',