From patchwork Sat Jan 18 19:23:43 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Martin X-Patchwork-Id: 312316 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id CDB4E2C00A3 for ; Sun, 19 Jan 2014 06:24:24 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id BA24A93CA1; Sat, 18 Jan 2014 19:24:16 +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 Smdi2xROpqt0; Sat, 18 Jan 2014 19:24:16 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 41A1E93D38; Sat, 18 Jan 2014 19:24:16 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 45C6C1CE8D5 for ; Sat, 18 Jan 2014 19:24:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4073F82874 for ; Sat, 18 Jan 2014 19:24:06 +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 C+DMcUQNcoiC for ; Sat, 18 Jan 2014 19:24:05 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-we0-f170.google.com (mail-we0-f170.google.com [74.125.82.170]) by whitealder.osuosl.org (Postfix) with ESMTPS id 97A8E825A8 for ; Sat, 18 Jan 2014 19:24:05 +0000 (UTC) Received: by mail-we0-f170.google.com with SMTP id u57so5766909wes.1 for ; Sat, 18 Jan 2014 11:24:04 -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:in-reply-to:references; bh=gjPLTcNELT5BW0AWGLyClvYYCIk1nSA0466hyZfSZv8=; b=lDqeMgsP55AKQDEBH/5r7Fn39Vz9COCUQLsk6Ql3guxpFTjNZq7qnNcINs03h5vBfy va6lDev0bVvJsJPM5CvjiVPCJ52CUlAGfhV974hejioT5/ikddGASztSk6x6Wp49Lj55 0nUPYNjiFY0OiIIJRA3oqxCjgMnHICh2R6PCe2hX+C0SuXA4JZ5SAGkWuF36Rcols1C2 8dffzKPYSIwUba3dGSI8NVaemc7JLJq3usjkD/wFEyTBYzJU7Y0B4YFNJwumqaa4fDy3 59N/n706b7Swz7p8JBOCLhdKJDTDIrN0YDMhtmNFTBpC9RwY9VKU83kA6gwYVUQJpAVj VOBw== X-Received: by 10.180.149.175 with SMTP id ub15mr3610905wib.44.1390073044237; Sat, 18 Jan 2014 11:24:04 -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 po3sm13322105wjc.3.2014.01.18.11.24.03 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 18 Jan 2014 11:24:03 -0800 (PST) From: Samuel Martin To: buildroot@busybox.net Date: Sat, 18 Jan 2014 20:23:43 +0100 Message-Id: <1390073027-14239-7-git-send-email-s.martin49@gmail.com> X-Mailer: git-send-email 1.8.5.3 In-Reply-To: <1390073027-14239-1-git-send-email-s.martin49@gmail.com> References: <1390073027-14239-1-git-send-email-s.martin49@gmail.com> Subject: [Buildroot] [PATCH 06/10] opencv: fix qt selection when highgui is enable 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 The OpenCV highgui module links against QtGui and QtTest. The latter is built by default but was never installed. Thanks to the previous patch on Qt, this can be rectified. So, update the OpenCV Config.in with the missing Qt module selection. Signed-off-by: Samuel Martin --- package/opencv/Config.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/opencv/Config.in b/package/opencv/Config.in index 146011a..79c7b0b 100644 --- a/package/opencv/Config.in +++ b/package/opencv/Config.in @@ -174,9 +174,11 @@ config BR2_PACKAGE_OPENCV_WITH_QT depends on !BR2_avr32 # qt select BR2_PACKAGE_QT select BR2_PACKAGE_QT_STL + select BR2_PACKAGE_QT_GUI_MODULE if BR2_PACKAGE_OPENCV_LIB_HIGHGUI + select BR2_PACKAGE_QT_TEST if BR2_PACKAGE_OPENCV_LIB_HIGHGUI default y help - Use Qt with STL support + Use Qt with QtTest module and STL support config BR2_PACKAGE_OPENCV_WITH_TIFF bool "tiff support"