Skip to content

Commit

Permalink
build: disable ancient V4L TV support by default
Browse files Browse the repository at this point in the history
  • Loading branch information
wm4 committed Jun 25, 2017
1 parent 7bfeb8b commit 7b84a3b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -812,14 +812,17 @@ radio_and_tv_features = [
'name': '--tv',
'desc': 'TV interface',
'func': check_true,
'default': 'disable',
}, {
'name': 'sys_videoio_h',
'desc': 'videoio.h',
'func': check_cc(header_name=['sys/time.h', 'sys/videoio.h'])
'func': check_cc(header_name=['sys/time.h', 'sys/videoio.h']),
'deps': [ 'tv' ],
}, {
'name': 'videodev',
'desc': 'videodev2.h',
'func': check_cc(header_name=['sys/time.h', 'linux/videodev2.h']),
'deps': [ 'tv' ],
'deps_neg': [ 'sys_videoio_h' ],
}, {
'name': '--tv-v4l2',
Expand Down

0 comments on commit 7b84a3b

Please sign in to comment.