diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-18 22:01:09 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-18 22:03:17 +0100 |
commit | 4a2bb236edb644e6c901b73a03a767d213f52a4a (patch) | |
tree | c4958d3fef332284397c09e1708d3fc9ddea4d56 /package/gstreamer1/gst1-plugins-bad/Config.in | |
parent | 1a492e059f0bc7ab2cb184e68f54996fbc4722f9 (diff) | |
download | buildroot-4a2bb236edb644e6c901b73a03a767d213f52a4a.tar.gz buildroot-4a2bb236edb644e6c901b73a03a767d213f52a4a.zip |
gst1-plugins-bad: add kernel header version dependency on DVB plugin
The DVB plugin uses the FEC_2_5 and QAM_4_NR from the DVB API, which
were added only in kernel 3.7. This commit adds the necessary kernel
header version dependency, which fixes:
http://autobuild.buildroot.net/results/fab7afc3490d77a6b29760394337298f2fd55d51/
Thanks to Peter Seiderer for the investigation!
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gstreamer1/gst1-plugins-bad/Config.in')
-rw-r--r-- | package/gstreamer1/gst1-plugins-bad/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in index f557678eb9..0aafea0985 100644 --- a/package/gstreamer1/gst1-plugins-bad/Config.in +++ b/package/gstreamer1/gst1-plugins-bad/Config.in @@ -651,9 +651,14 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SNDFILE config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB bool "dvb" select BR2_PACKAGE_DTV_SCAN_TABLES + # FEC_2_5 / QAM_4_NR definitions + depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 help DVB elements +comment "dvb needs a toolchain w/ headers >= 3.7" + depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7 + config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HLS bool "hls" select BR2_PACKAGE_GNUTLS |