From patchwork Wed Mar 5 22:55:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Martin X-Patchwork-Id: 327221 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 9A3B82C00D2 for ; Thu, 6 Mar 2014 09:55:49 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D5D9490564; Wed, 5 Mar 2014 22:55:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Zh8SPePJ52cW; Wed, 5 Mar 2014 22:55:46 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 5C1148FE33; Wed, 5 Mar 2014 22:55:46 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id BE8031C28CB for ; Wed, 5 Mar 2014 22:55:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BAB0995F3B for ; Wed, 5 Mar 2014 22:55:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id V2Cc+pCg5yUb for ; Wed, 5 Mar 2014 22:55:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f178.google.com (mail-we0-f178.google.com [74.125.82.178]) by hemlock.osuosl.org (Postfix) with ESMTPS id 4F2B495F1C for ; Wed, 5 Mar 2014 22:55:43 +0000 (UTC) Received: by mail-we0-f178.google.com with SMTP id u56so2086959wes.37 for ; Wed, 05 Mar 2014 14:55:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=aOQbrRAmXhUflHGyImQvoJRupKlWMveQXbjTkmtmYg4=; b=anAQUZ1yJTVRnuVxjGVLslRjL67qTz1uZyFWTOzsx/XXrDjvgcV0qRKLnMVXoQzbgc QJaVTXs+2Bmwk58YqTsM1XrKblA56IVhbvVopqwnbnBwqAa7tg4MkUZPvssWyKgswlxR ctfYvYpMTQhXpNwuVvbJWOI6DwZo19ndG2E7v+aED61peBEPGK26CVDwhSBwwZsGRVOj CmPktrPtaJMuoAyVljo5V/XMKuiYBtsasvST/cln94L7h6xLd8QcT6RhChfddLPKRD0b n/IyaE0TQyD1zMyClKCNvZAyFpfj+vzqk2JAvdw1uNujGWIKPiS9QYVMWp9R8ygWyLzf eq9w== X-Received: by 10.194.192.233 with SMTP id hj9mr4930765wjc.78.1394060141694; Wed, 05 Mar 2014 14:55:41 -0800 (PST) Received: from localhost.localdomain (ivr94-4-82-229-165-48.fbx.proxad.net. [82.229.165.48]) by mx.google.com with ESMTPSA id hy8sm7107981wjb.2.2014.03.05.14.55.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 05 Mar 2014 14:55:40 -0800 (PST) From: Samuel Martin To: buildroot@buildroot.net Date: Wed, 5 Mar 2014 23:55:30 +0100 Message-Id: <1394060130-4805-1-git-send-email-s.martin49@gmail.com> X-Mailer: git-send-email 1.9.0 Subject: [Buildroot] [PATCH] gst1-plugins-bad: add missing opencv ml module dependency X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net gst1-plugins-bad source code does include the old-style global opencv header "opencv/cv.h", which includes headers from the core, imgproc, video, features2d, flann, calib3d, objdetect and legacy modules. However, the legacy module, in addition to headers from some of the previously listed modules, also includes headers from the ml module. Thus, the ml module must be selected to be able to build the legacy one, so the gst-plugins-bad's opencv plugin. Fixes: http://autobuild.buildroot.net/results/d02/d02e1843ef90f4b40c99e3b23eddf376f827d46e/ Signed-off-by: Samuel Martin --- package/gstreamer1/gst1-plugins-bad/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in index 0685322..2c5c290 100644 --- a/package/gstreamer1/gst1-plugins-bad/Config.in +++ b/package/gstreamer1/gst1-plugins-bad/Config.in @@ -434,6 +434,7 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENCV select BR2_PACKAGE_OPENCV_LIB_FLANN select BR2_PACKAGE_OPENCV_LIB_IMGPROC select BR2_PACKAGE_OPENCV_LIB_LEGACY + select BR2_PACKAGE_OPENCV_LIB_ML select BR2_PACKAGE_OPENCV_LIB_OBJDETECT select BR2_PACKAGE_OPENCV_LIB_VIDEO help