From patchwork Fri Jul 29 08:40:33 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 16865 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 669B4C3275 for ; Fri, 29 Jul 2022 08:40:46 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id B8B4463312; Fri, 29 Jul 2022 10:40:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1659084045; bh=Qr7op+ZC813IWwvAJkl9Q8gSkil0Kfxrx6SN/lEGwpw=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=P/kLbHPqw5rzQZLvrKwyKQzWhSHL+ZozSdz1XNwpZ5RGcCZ63U7oWTZu1HBmqsmUR fU+RHviWd09RDV+bU4p0Wz37YfSu+/KuWA3CU++7eXAMkITjKDVhWgYaHJ4nLATGv/ fenLHnlqoDD3cmPEN6nFGv1AP2RnA0Y6HMCXs1dtWI0GnRUerzcdqXT7B67UnMTurI mTGEJehYCvIJ+uBcj20qpIBP3gy27YiWH9Avj8uc68FQmSAJBBR3G32nKq/kCJB1CY KWWLhfGYVTIB+2JsNLmftTIOl6LBgxb7NDDn+dQiZ2BVnCzO/p7CE6vzynDE08fMWT nd9W8D9qRjTwg== Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::224]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3700B60486 for ; Fri, 29 Jul 2022 10:40:44 +0200 (CEST) Received: (Authenticated sender: jacopo@jmondi.org) by mail.gandi.net (Postfix) with ESMTPSA id D61F9E0008; Fri, 29 Jul 2022 08:40:42 +0000 (UTC) To: libcamera-devel@lists.libcamera.org Date: Fri, 29 Jul 2022 10:40:33 +0200 Message-Id: <20220729084033.5435-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2] rpi: controller: awb: Include 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-Patchwork-Original-From: Jacopo Mondi via libcamera-devel From: Jacopo Mondi Reply-To: Jacopo Mondi Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Building on gcc8 on Debian 10 fails with asyncThread_ = std::thread(std::bind(&Awb::asyncFunc, this)); ../src/ipa/raspberrypi/controller/rpi/awb.cpp:177:34: note: ‘std::bind’ is defined in header ‘’; did you forget to ‘#include ’? Fix that by including in awb.cpp. Fixes: c1597f989654 ("ipa: raspberrypi: Use YamlParser to replace dependency on boost") Reported-by: https://buildbot.libcamera.org/#/builders/6/builds/414 Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain --- v1->v2: - Rebased on latest changes and addded tags One more review and I'll push. --- src/ipa/raspberrypi/controller/rpi/awb.cpp | 1 + 1 file changed, 1 insertion(+) -- 2.37.1 diff --git a/src/ipa/raspberrypi/controller/rpi/awb.cpp b/src/ipa/raspberrypi/controller/rpi/awb.cpp index a16e04a07ff8..2b88c3b0141b 100644 --- a/src/ipa/raspberrypi/controller/rpi/awb.cpp +++ b/src/ipa/raspberrypi/controller/rpi/awb.cpp @@ -6,6 +6,7 @@ */ #include +#include #include