From cd469932758bf2bec1ff9c82aeb373e18730d0c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Sat, 26 Aug 2023 09:00:37 +0200 Subject: daemon: Fix build with GCC 13. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Ludovic Courtès --- 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" -- cgit v1.2.3