From patchwork Fri Apr 4 16:12:34 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Quentin Schulz X-Patchwork-Id: 23138 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 30DECC327D for ; Fri, 4 Apr 2025 16:12:58 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 6AC406899E; Fri, 4 Apr 2025 18:12:57 +0200 (CEST) Received: from smtp-190c.mail.infomaniak.ch (smtp-190c.mail.infomaniak.ch [IPv6:2001:1600:4:17::190c]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 0E34468991 for ; Fri, 4 Apr 2025 18:12:56 +0200 (CEST) Received: from smtp-3-0000.mail.infomaniak.ch (unknown [IPv6:2001:1600:4:17::246b]) by smtp-3-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4ZTkCq5SCTzNGH; Fri, 4 Apr 2025 18:12:55 +0200 (CEST) Received: from unknown by smtp-3-0000.mail.infomaniak.ch (Postfix) with ESMTPA id 4ZTkCq0nj7zXGt; Fri, 4 Apr 2025 18:12:54 +0200 (CEST) From: Quentin Schulz To: Cc: libcamera-devel@lists.libcamera.org, Quentin Schulz Subject: [PATCH 1/2] meson: make the default value of "documentation" feature explicit Date: Fri, 4 Apr 2025 18:12:34 +0200 Message-ID: <20250404161237.1298653-1-foss+libcamera@0leil.net> X-Mailer: git-send-email 2.49.0 MIME-Version: 1.0 X-Infomaniak-Routing: alpha 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" From: Quentin Schulz The meson documentation on the feature build options isn't clear if a missing "value" is legal and if it is, what its default value is.[1] Therefore, let's make it explicit by using what is experimentally the default: auto. [1] https://mesonbuild.com/Build-options.html#features Signed-off-by: Quentin Schulz Reviewed-by: Laurent Pinchart --- meson_options.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/meson_options.txt b/meson_options.txt index 1877d800..2104469e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -18,6 +18,7 @@ option('cam', option('documentation', type : 'feature', + value : 'auto', description : 'Generate the project documentation') option('doc_werror',