mirror of
https://github.com/mpv-player/mpv
synced 2024-12-26 17:12:36 +00:00
build: fix v4l2 support on NetBSD
It was accidentally broken. Tested by a NetBSD user. May help with other BSDs.
This commit is contained in:
parent
a169a2fb79
commit
6f1357d876
17
wscript
17
wscript
@ -184,10 +184,6 @@ iconv support use --disable-iconv.",
|
|||||||
'deps': [ 'os-win32', 'mingw' ],
|
'deps': [ 'os-win32', 'mingw' ],
|
||||||
'func': check_libs(['waio'],
|
'func': check_libs(['waio'],
|
||||||
check_statement('waio/waio.h', 'waio_alloc(0, 0, 0, 0)')),
|
check_statement('waio/waio.h', 'waio_alloc(0, 0, 0, 0)')),
|
||||||
}, {
|
|
||||||
'name': 'videoio',
|
|
||||||
'desc': 'videoio.h',
|
|
||||||
'func': check_headers('sys/videoio.h')
|
|
||||||
}, {
|
}, {
|
||||||
'name': '--termios',
|
'name': '--termios',
|
||||||
'desc': 'termios',
|
'desc': 'termios',
|
||||||
@ -724,15 +720,26 @@ radio_and_tv_features = [
|
|||||||
'name': '--tv',
|
'name': '--tv',
|
||||||
'desc': 'TV interface',
|
'desc': 'TV interface',
|
||||||
'func': check_true,
|
'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',
|
'name': '--tv-v4l2',
|
||||||
'desc': 'Video4Linux2 TV interface',
|
'desc': 'Video4Linux2 TV interface',
|
||||||
'deps': [ 'tv' ],
|
'deps': [ 'tv' ],
|
||||||
'func': check_cc(header_name=['sys/time.h', 'linux/videodev2.h'])
|
'deps_any': [ 'sys_videoio_h', 'videodev' ],
|
||||||
|
'func': check_true,
|
||||||
}, {
|
}, {
|
||||||
'name': '--libv4l2',
|
'name': '--libv4l2',
|
||||||
'desc': 'libv4l2 support',
|
'desc': 'libv4l2 support',
|
||||||
'func': check_pkg_config('libv4l2'),
|
'func': check_pkg_config('libv4l2'),
|
||||||
|
'deps': [ 'tv-v4l2' ],
|
||||||
}, {
|
}, {
|
||||||
'name': '--pvr',
|
'name': '--pvr',
|
||||||
'desc': 'Video4Linux2 MPEG PVR interface',
|
'desc': 'Video4Linux2 MPEG PVR interface',
|
||||||
|
Loading…
Reference in New Issue
Block a user