diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-07-01 23:34:34 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-07-02 13:45:47 +0200 |
commit | b767aee44395fe5dae4d0b05a67810c7cce855b5 (patch) | |
tree | 76965822a6bb4146236e3451d4b80dc122f5997b /package | |
parent | d6e251d07c57c07f6bae0b7f40b9eedf49bb4f4a (diff) | |
download | buildroot-novena-b767aee44395fe5dae4d0b05a67810c7cce855b5.tar.gz buildroot-novena-b767aee44395fe5dae4d0b05a67810c7cce855b5.zip |
gst1-plugins-bad: add missing depends on C++ for the OpenCV plugin
OpenCV requires C++ support, so we shouldn't select it without
depending on C++ support.
Fixes:
http://autobuild.buildroot.org/results/71f/71f2d8a267a0d159521407a9a2330e68d756c4b3/build-end.log.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/multimedia/gst1-plugins-bad/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/multimedia/gst1-plugins-bad/Config.in b/package/multimedia/gst1-plugins-bad/Config.in index 7eb531abd..98550e081 100644 --- a/package/multimedia/gst1-plugins-bad/Config.in +++ b/package/multimedia/gst1-plugins-bad/Config.in @@ -400,10 +400,14 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NEON config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV bool "opencv" + depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_OPENCV help GStreamer OpenCV Plugins +comment "opencv plugin requires a toolchain with C++ support" + depends on !BR2_INSTALL_LIBSTDCPP + config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPUS bool "opus" select BR2_PACKAGE_OPUS |