From c69e3415d240cb2eb2ca94885b05fe3581854586 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Tue, 28 Nov 2023 20:53:29 +0100 Subject: [PATCH] meson: enable dvbin by default again This was disabled by default in 99cef59fc9a (from 2017) due to build issues with old kernel headers. Whatever was considered old at that time will be ancient now and with the last commit there should be no isses auto-detecting it. --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 191f118ed9a4f..a5454e97ef660 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -11,7 +11,7 @@ option('ta-leak-report', type: 'boolean', value: false, description: 'enable ta # misc features option('cdda', type: 'feature', value: 'disabled', description: 'cdda support (libcdio)') option('cplugins', type: 'feature', value: 'auto', description: 'C plugins') -option('dvbin', type: 'feature', value: 'disabled', description: 'DVB input module') +option('dvbin', type: 'feature', value: 'auto', description: 'DVB input module') option('dvdnav', type: 'feature', value: 'disabled', description: 'dvdnav support') option('iconv', type: 'feature', value: 'auto', description: 'iconv') option('javascript', type: 'feature', value: 'auto', description: 'Javascript (MuJS backend)')