summaryrefslogtreecommitdiffstats
path: root/package/opencv
diff options
context:
space:
mode:
authorAdam Duskett <Aduskett@gmail.com>2017-04-22 13:18:01 -0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-01 18:57:46 +0200
commit3483a98d01b319053bc1956aca25c658846c4ab5 (patch)
treef7ecc2ada1a1aaf591471e2134d1a46b74e020a4 /package/opencv
parentf998e0d092d90e3513e1e7f06afbef604ed01f76 (diff)
downloadbuildroot-3483a98d01b319053bc1956aca25c658846c4ab5.tar.gz
buildroot-3483a98d01b319053bc1956aca25c658846c4ab5.zip
package/o*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter o in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/opencv')
-rw-r--r--package/opencv/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/opencv/Config.in b/package/opencv/Config.in
index c046baaa4b..0260851340 100644
--- a/package/opencv/Config.in
+++ b/package/opencv/Config.in
@@ -1,9 +1,9 @@
menuconfig BR2_PACKAGE_OPENCV
bool "opencv-2.4"
- select BR2_PACKAGE_ZLIB
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_WCHAR
+ select BR2_PACKAGE_ZLIB
help
OpenCV (Open Source Computer Vision) is a library of programming
functions for real time computer vision.
@@ -52,13 +52,13 @@ config BR2_PACKAGE_OPENCV_LIB_FLANN
config BR2_PACKAGE_OPENCV_LIB_GPU
bool "gpu"
depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_19405 # opencv libphoto
+ depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_OPENCV_LIB_CALIB3D
select BR2_PACKAGE_OPENCV_LIB_IMGPROC
select BR2_PACKAGE_OPENCV_LIB_LEGACY
select BR2_PACKAGE_OPENCV_LIB_OBJDETECT
select BR2_PACKAGE_OPENCV_LIB_PHOTO
select BR2_PACKAGE_OPENCV_LIB_VIDEO
- depends on !BR2_STATIC_LIBS
help
Include opencv_gpu module into the OpenCV build.
OpenPOWER on IntegriCloud