From patchwork Mon Nov 9 01:16:55 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Niklas_S=C3=B6derlund?= X-Patchwork-Id: 10393 X-Patchwork-Delegate: niklas.soderlund@ragnatech.se Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 7CF5BBDB89 for ; Mon, 9 Nov 2020 01:17:16 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 13B596306D; Mon, 9 Nov 2020 02:17:16 +0100 (CET) Received: from bin-mail-out-06.binero.net (bin-mail-out-06.binero.net [195.74.38.229]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 47A5363067 for ; Mon, 9 Nov 2020 02:17:11 +0100 (CET) X-Halon-ID: 4a773f55-2229-11eb-954c-0050569116f7 Authorized-sender: niklas.soderlund@fsdn.se Received: from bismarck.berto.se (p4fca2458.dip0.t-ipconnect.de [79.202.36.88]) by bin-vsp-out-03.atm.binero.net (Halon) with ESMTPA id 4a773f55-2229-11eb-954c-0050569116f7; Mon, 09 Nov 2020 02:17:10 +0100 (CET) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: Tomasz Figa Date: Mon, 9 Nov 2020 02:16:55 +0100 Message-Id: <20201109011656.2560957-2-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201109011656.2560957-1-niklas.soderlund@ragnatech.se> References: <20201109011656.2560957-1-niklas.soderlund@ragnatech.se> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/2] media-libs/libcamera: Android support is a feature not a boolean X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: libcamera-devel@lists.libcamera.org Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Upstream switched the android option from a boolean to a meson feature, update ebuild to reflect this. Signed-off-by: Niklas Söderlund --- media-libs/libcamera/libcamera-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/libcamera/libcamera-9999.ebuild b/media-libs/libcamera/libcamera-9999.ebuild index 4273adbc9e1e0f33..57ff00337309f30c 100644 --- a/media-libs/libcamera/libcamera-9999.ebuild +++ b/media-libs/libcamera/libcamera-9999.ebuild @@ -35,7 +35,7 @@ src_configure() { local emesonargs=( $(meson_use doc documentation) $(meson_use test) - -Dandroid="true" + -Dandroid=enabled -Dpipelines="$(pipeline_list "${pipelines[@]}")" ) meson_src_configure