From patchwork Wed Mar 27 13:20:15 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19816 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 D831CBD160 for ; Wed, 27 Mar 2024 13:20:26 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E1ABF63331; Wed, 27 Mar 2024 14:20:25 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="mCryHbNq"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D893C61C35 for ; Wed, 27 Mar 2024 14:20:24 +0100 (CET) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 4D647675 for ; Wed, 27 Mar 2024 14:19:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1711545592; bh=BHNRddqIw9xfNiP0O44GbIMt+0Zwf8n6wutR0QeNIcw=; h=From:To:Subject:Date:From; b=mCryHbNqluJ6debAL7pE8T0LHJtecOE0cI4Vk7nGNp0forwZihK7jQJp4T0gsHmBy G1tI1vgT5qbM8kfLKJCdexL1LG0PdnYXIcCmLqo1FlJP84BwRhr5LJDdz+Ga16tCLq nHT5ZvBso/4UAe1lcUu4lfMkL80nhFoHUzsvhd/U= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH] v4l2: meson: Keep defines sorted alphabetically Date: Wed, 27 Mar 2024 15:20:15 +0200 Message-ID: <20240327132015.22095-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.43.2 MIME-Version: 1.0 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Due to my mistake, commit 705601781b6a ("v4l2: Unset _TIME_BITS in addition to _FILE_OFFSET_BITS") got merged with incorrect sorting of defines. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Umang Jain Reviewed-by: Daniel Scally --- src/v4l2/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) base-commit: 705601781b6ab4f3035719ddaf1e442f4a5e8737 diff --git a/src/v4l2/meson.build b/src/v4l2/meson.build index 12d1e2a4c3c0..58f53bf3d0f4 100644 --- a/src/v4l2/meson.build +++ b/src/v4l2/meson.build @@ -23,8 +23,8 @@ v4l2_compat_cpp_args = [ # file operations, disable transparent large file support. '-U_FILE_OFFSET_BITS', '-D_FILE_OFFSET_BITS=32', - '-U_TIME_BITS', '-D_LARGEFILE64_SOURCE', + '-U_TIME_BITS', '-fvisibility=hidden', ]