From patchwork Sat Mar 7 21:13:24 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3045 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 86A30628E3 for ; Sat, 7 Mar 2020 22:13:39 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 241B124B for ; Sat, 7 Mar 2020 22:13:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1583615619; bh=eE3vxkBN4uy++1U+mRdUxtwBi3NJVq7SSFIuy5wPS94=; h=From:To:Subject:Date:In-Reply-To:References:From; b=bE0ydD6RabedVazCgyY+0t+Z1PaBlAqeApN008CnDAOxrboptOs/TGK86RBSdSfTn 8fwCkBFjABSxmsyZG+kw+2vtvEF2wWESx5loLwLy7GzUeWUV3UTUr5PBUnxk1CJOVF NY2K9twMm3upr3LNYBHNxfz+T1Rj4bLJr/kICqcQ= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Sat, 7 Mar 2020 23:13:24 +0200 Message-Id: <20200307211326.26994-6-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200307211326.26994-1-laurent.pinchart@ideasonboard.com> References: <20200307211326.26994-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 5/7] cam: Link against libatomic if needed 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: , X-List-Received-Date: Sat, 07 Mar 2020 21:13:40 -0000 The cam application makes use if std::atomic<>, link against libatomic if needed. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- src/cam/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cam/meson.build b/src/cam/meson.build index 478346c59590..e5cec267e948 100644 --- a/src/cam/meson.build +++ b/src/cam/meson.build @@ -7,5 +7,5 @@ cam_sources = files([ ]) cam = executable('cam', cam_sources, - dependencies : libcamera_dep, + dependencies : [ libatomic_dep, libcamera_dep] , install : true)