From patchwork Thu May 4 14:47:59 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 18601 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 23B3CC0DA4 for ; Thu, 4 May 2023 14:48:09 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 813DF633B7; Thu, 4 May 2023 16:48:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1683211688; bh=Olm9j6lHasAXMWqnMGiaEj7Z+LgTW2iKP1uQ794IV+o=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=4CdhsZnuZm/owY1bREYJis+j6hnFoPF6/Nlk2jFnsLeUtObraTkf+SczZBi5L6zpx hkwgu9Zk4lMecr7aPpUVHQdGnw3r9ISUsc9DOqUWXtmcOUDWAh3UZUwa+VRR0NC/1x P7eFw6vwUuo2hZkJq/w9Cb8s94Ei6UfWceOZqI2CmZHajCsqdzRqnZVXDwl5AN+zH7 ZIkWhqs3T0hnhgsnICddFVpItwpHvNnMYZPxC7HXZrCuAMz9bGheK761RK2vvfN2eR iZdpe04XyfHu9yP7RAvEpQLrtSnB/Z2XbQJooUaJfThRKfZo8TMyIZgg3fr5Vods+u friWPWrIeesLQ== 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 1B03461EAE for ; Thu, 4 May 2023 16:48:07 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Uk1lAYl1"; dkim-atps=neutral Received: from Monstersaurus.local (aztw-30-b2-v4wan-166917-cust845.vm26.cable.virginm.net [82.37.23.78]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 6469282F; Thu, 4 May 2023 16:48:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1683211683; bh=Olm9j6lHasAXMWqnMGiaEj7Z+LgTW2iKP1uQ794IV+o=; h=From:To:Cc:Subject:Date:From; b=Uk1lAYl1EREaFiMkWSI1emSwpPimr7r+1OhIOoDKCAoAqYkJPGUOhCZxOFbMBgSxL nzCBn7gLTIr9vt+eJlTRZnjrgm5wKKUq6p/L/AEoml3BGlzEMPgcN5D5HQDqpWZLdY ve+KWNmCkWegG9NCcBV3V81/UzsdTFEgoz8e50Kg= To: libcamera devel Date: Thu, 4 May 2023 15:47:59 +0100 Message-Id: <20230504144801.2590668-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 0/2] V4L2 Compatibility installation directory 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: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" We currently install the v4l2-compat.so object to the same location as libcamera.so. This prevents it from being packaged by distributions. Rather than add soname versioning - and because the object should not be directly linked against by applications, move the installation to the 'libexecdir' path. Kieran Bingham (2): libcamera: ipa_manager: Only parse IPA modules v4l2: Move the v4l2 compat layer to libexec/libcamera src/libcamera/ipa_manager.cpp | 4 ++++ src/libcamera/proxy/worker/meson.build | 2 +- src/meson.build | 1 + src/v4l2/meson.build | 3 ++- 4 files changed, 8 insertions(+), 2 deletions(-)