emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#65547: closed ([PATCH] daemon: Fix build with GCC13)


From: GNU bug Tracking System
Subject: bug#65547: closed ([PATCH] daemon: Fix build with GCC13)
Date: Sat, 09 Sep 2023 20:32:01 +0000

Your message dated Sat, 09 Sep 2023 22:31:32 +0200
with message-id <87il8jw0kb.fsf@gnu.org>
and subject line Re: bug#65547: [PATCH] daemon: Fix build with GCC13
has caused the debbugs.gnu.org bug report #65547,
regarding [PATCH] daemon: Fix build with GCC13
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
65547: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=65547
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] daemon: Fix build with GCC13 Date: Sat, 26 Aug 2023 09:00:37 +0200
From: Sören Tempel <soeren@soeren-tempel.net>

The sqlite.hh file uses fixed-width integer types from stdint.h. As
such, it needs to include <cstdint>. 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 <cstdint>

Signed-off-by: Sören Tempel <soeren@soeren-tempel.net>
---
 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 <functional>
 #include <string>
+#include <cstdint>
 
 #include "types.hh"
 



--- End Message ---
--- Begin Message --- Subject: Re: bug#65547: [PATCH] daemon: Fix build with GCC13 Date: Sat, 09 Sep 2023 22:31:32 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hi,

soeren@soeren-tempel.net skribis:

> From: Sören Tempel <soeren@soeren-tempel.net>
>
> The sqlite.hh file uses fixed-width integer types from stdint.h. As
> such, it needs to include <cstdint>. 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 <cstdint>
>
> Signed-off-by: Sören Tempel <soeren@soeren-tempel.net>

Pushed as cd469932758bf2bec1ff9c82aeb373e18730d0c4, thanks!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]