1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-01 00:07:33 +00:00

meson: fix check for dvbin availability

This commit is contained in:
sfan5 2023-11-28 21:05:57 +01:00
parent c7d8e155d2
commit 67b75a3b34

View File

@ -599,11 +599,12 @@ if features['cdda']
sources += files('stream/stream_cdda.c')
endif
dvbin = get_option('dvbin').require(
dvbin_opt = get_option('dvbin').require(
get_option('gpl'),
error_message: 'the build is not GPL!',
)
features += {'dvbin': dvbin.allowed()}
dvbin = cc.has_header('linux/dvb/frontend.h', required: dvbin_opt)
features += {'dvbin': dvbin}
if features['dvbin']
sources += files('stream/dvb_tune.c',
'stream/stream_dvb.c')