From unknown Thu Jun 19 16:21:19 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#65547 <65547@debbugs.gnu.org> To: bug#65547 <65547@debbugs.gnu.org> Subject: Status: [PATCH] daemon: Fix build with GCC13 Reply-To: bug#65547 <65547@debbugs.gnu.org> Date: Thu, 19 Jun 2025 23:21:19 +0000 retitle 65547 [PATCH] daemon: Fix build with GCC13 reassign 65547 guix-patches submitter 65547 soeren@soeren-tempel.net severity 65547 normal tag 65547 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 26 03:01:45 2023 Received: (at submit) by debbugs.gnu.org; 26 Aug 2023 07:01:45 +0000 Received: from localhost ([127.0.0.1]:41592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qZnIn-0002Rh-8S for submit@debbugs.gnu.org; Sat, 26 Aug 2023 03:01:45 -0400 Received: from lists.gnu.org ([2001:470:142::17]:52142) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qZnIi-0002R0-7p for submit@debbugs.gnu.org; Sat, 26 Aug 2023 03:01:43 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qZnIL-0004ts-VH for guix-patches@gnu.org; Sat, 26 Aug 2023 03:01:18 -0400 Received: from magnesium.8pit.net ([45.76.88.171]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qZnII-00024Z-N7; Sat, 26 Aug 2023 03:01:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=opensmtpd; bh=nVcQ3LaMIz E0k9esoMVAGgwacNhqOv59bJpoYoIEmqU=; h=date:subject:to:from; d=soeren-tempel.net; b=iNXzieC4MKgfX76sLRyYvw4YwPjCxS4GlxD6V3AZ09zsF68 ycklJiJ1HfJfpySVUReo9Xq4DNOO/w0c+F4sh5++RqGn4X9kU6nv8dxi/GS9RnSiFfC/jm VtVTCFC7Ij/WcxSqGdPU4TmnqYdmMmVBbNcVSNg74EqZG6oRqeLZV8= Received: from localhost (dynamic-2a02-3102-49da-001b-8cd0-476e-13b9-b6af.310.pool.telefonica.de [2a02:3102:49da:1b:8cd0:476e:13b9:b6af]) by magnesium.8pit.net (OpenSMTPD) with ESMTPSA id 0a75cb08 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:YES); Sat, 26 Aug 2023 09:01:03 +0200 (CEST) From: soeren@soeren-tempel.net To: guix-patches@gnu.org Subject: [PATCH] daemon: Fix build with GCC13 Date: Sat, 26 Aug 2023 09:00:37 +0200 Message-ID: <20230826070036.7629-2-soeren@soeren-tempel.net> X-Mailer: git-send-email 2.42.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=45.76.88.171; envelope-from=soeren@soeren-tempel.net; helo=magnesium.8pit.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) From: Sören Tempel The sqlite.hh file uses fixed-width integer types from stdint.h. As such, it needs to include . Without this include, the file doesn't compile successfully with GCC13. See: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes * nix/libstore/sqlite.hh: include Signed-off-by: Sören Tempel --- nix/libstore/sqlite.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/libstore/sqlite.hh b/nix/libstore/sqlite.hh index 326e4a4855..6cadba6849 100644 --- a/nix/libstore/sqlite.hh +++ b/nix/libstore/sqlite.hh @@ -2,6 +2,7 @@ #include #include +#include #include "types.hh" From debbugs-submit-bounces@debbugs.gnu.org Sat Sep 09 16:31:47 2023 Received: (at 65547-done) by debbugs.gnu.org; 9 Sep 2023 20:31:47 +0000 Received: from localhost ([127.0.0.1]:48523 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qf4cN-0001c9-DJ for submit@debbugs.gnu.org; Sat, 09 Sep 2023 16:31:47 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:43164) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qf4cK-0001bv-Ko for 65547-done@debbugs.gnu.org; Sat, 09 Sep 2023 16:31:46 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qf4cB-0004Kt-Es; Sat, 09 Sep 2023 16:31:35 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=DBkvgHXVRZHgwA7KwtmUDHqTlhl8cWBbx0vxA9iQMrI=; b=icXJO0vmK6sms4aGe8SL QBJWPE0vyf2i6la7iQ5/vf7j3N9hnzBFIZtRiCgI/cR4rB0eZLEXapNd7qKiMe9ahAhG/mltef6ZX cWDkRyHVCM3tbjUGRP45KwtJaRqe5Emq714nLBgSjjmCxpHFH/KJemxflHLmy7Kk5alieDB/90A4F GUfrlOATFdFIydpgKYCGpjJtkFF5xDwbOmsrz7GL5DdxJZO7mQEkCov7085+CHnpD7jQqvHWCZnUk Vm2KVR36AudgrtW8dhNhN1WIZDJP+QxWPLptHTUssKp6F3WGQluwpvc90fKMLWpZ/P7jXPe9HFwf4 vjWtu0/GET8q3Q==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: soeren@soeren-tempel.net Subject: Re: bug#65547: [PATCH] daemon: Fix build with GCC13 References: <20230826070036.7629-2-soeren@soeren-tempel.net> Date: Sat, 09 Sep 2023 22:31:32 +0200 In-Reply-To: <20230826070036.7629-2-soeren@soeren-tempel.net> (soeren@soeren-tempel.net's message of "Sat, 26 Aug 2023 09:00:37 +0200") Message-ID: <87il8jw0kb.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 65547-done Cc: 65547-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi, soeren@soeren-tempel.net skribis: > From: S=C3=B6ren Tempel > > The sqlite.hh file uses fixed-width integer types from stdint.h. As > such, it needs to include . Without this include, the file > doesn't compile successfully with GCC13. > > See: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes > > * nix/libstore/sqlite.hh: include > > Signed-off-by: S=C3=B6ren Tempel Pushed as cd469932758bf2bec1ff9c82aeb373e18730d0c4, thanks! Ludo=E2=80=99. From unknown Thu Jun 19 16:21:19 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 08 Oct 2023 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator