diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2014-02-25 15:36:44 +0000 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-25 20:59:44 +0100 |
commit | 3324f4e8b69ab49783a233b27c9b2edeecedb5ce (patch) | |
tree | b24f3bc2720d50a51b4fc668802340b73063858a | |
parent | 3b38a1e6bb99ac53b3a95db52869c8d194ff94f7 (diff) | |
download | buildroot-3324f4e8b69ab49783a233b27c9b2edeecedb5ce.tar.gz buildroot-3324f4e8b69ab49783a233b27c9b2edeecedb5ce.zip |
gst1-plugins-bad: select all opencv modules needed
gstopencv.c includes the old-style header opencv/cv.h which includes a
set of module's headers. To satisfy the opencv/cv.h requirements we need
to select the modules which provide the required headers.
Fixes:
http://autobuild.buildroot.net/results/f5b/f5b248eb7be38d6eb3655cdc1ab6ee5e716b9b29/
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: Samuel Martin <smartin@aldebaran-robotics.com>
Reviewed-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gstreamer1/gst1-plugins-bad/Config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in index 3647e5351d..efad91eef5 100644 --- a/package/gstreamer1/gst1-plugins-bad/Config.in +++ b/package/gstreamer1/gst1-plugins-bad/Config.in @@ -418,6 +418,15 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV bool "opencv" depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_OPENCV + # Remove the following opencv modules when gstreamer fixes the + # problem of including the old "cv.h" header + select BR2_PACKAGE_OPENCV_LIB_CALIB3D + select BR2_PACKAGE_OPENCV_LIB_FEATURES2D + select BR2_PACKAGE_OPENCV_LIB_FLANN + select BR2_PACKAGE_OPENCV_LIB_IMGPROC + select BR2_PACKAGE_OPENCV_LIB_LEGACY + select BR2_PACKAGE_OPENCV_LIB_OBJDETECT + select BR2_PACKAGE_OPENCV_LIB_VIDEO help GStreamer OpenCV Plugins |