From patchwork Tue Mar 12 21:17:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 227114 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 892372C06E6 for ; Wed, 13 Mar 2013 08:17:17 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 9E63831223; Tue, 12 Mar 2013 21:17:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id stza6ch3VZni; Tue, 12 Mar 2013 21:17:12 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4623F201E8; Tue, 12 Mar 2013 21:17:12 +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 ED06D8F79A for ; Tue, 12 Mar 2013 21:17:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3562E8D107 for ; Tue, 12 Mar 2013 21:17:11 +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 94GhlEh+IcTz for ; Tue, 12 Mar 2013 21:17:10 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by whitealder.osuosl.org (Postfix) with ESMTPS id EFE4F8D0BA for ; Tue, 12 Mar 2013 21:17:09 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1UFWYj-0006EI-L6; Tue, 12 Mar 2013 22:16:35 +0100 Received: from arnout by vandecaa-laptop with local (Exim 4.80) (envelope-from ) id 1UFWZF-0002EJ-6b; Tue, 12 Mar 2013 22:17:05 +0100 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@busybox.net Date: Tue, 12 Mar 2013 22:17:05 +0100 Message-Id: <1363123025-8481-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 1.7.10.4 Subject: [Buildroot] [PATCH] libv4l: depends on jpeg so must select it 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 From: "Arnout Vandecappelle (Essensium/Mind)" Fixes http://autobuild.buildroot.net/results/3053854fccd65bc5b28384f2a2039a33abeeea47 The introduction of the error message for the jpeg virtual package exposes this kind of error. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- Perhaps it would be nice to add this type of check to the generic package infrastructure: if a package is built, it should always be selected. Of course, that makes it impossible to do a quick build of a package without reconfiguring, but we can add another make variable that bypasses the check. --- package/libv4l/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/libv4l/Config.in b/package/libv4l/Config.in index 1e5eec6..cb0f43c 100644 --- a/package/libv4l/Config.in +++ b/package/libv4l/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_LIBV4L bool "libv4l" depends on BR2_LARGEFILE + select BR2_PACKAGE_JPEG help libv4l is an accompanying collection of libraries that adds a thin abstraction layer on top of video4linux2 (V4L2) devices.