biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / envoy / dd_trace_cpp.patch
blobd9873c8f1a8c912ddbf0c3e110c73fd7fa7bb94c
1 From 4851a6a722b228ecbfd9df255dab3d8f30bd84b9 Mon Sep 17 00:00:00 2001
2 From: Malte Poll <1780588+malt3@users.noreply.github.com>
3 Date: Mon, 22 Apr 2024 15:36:33 +0200
4 Subject: [PATCH] nixpkgs: add cstdint to fix compilation under GCC 13
6 https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
7 ---
8 src/datadog/parse_util.h | 1 +
9 1 file changed, 1 insertion(+)
11 diff --git a/src/datadog/parse_util.h b/src/datadog/parse_util.h
12 index c603286..c8e4e83 100644
13 --- a/src/datadog/parse_util.h
14 +++ b/src/datadog/parse_util.h
15 @@ -2,6 +2,7 @@
17 // This component provides parsing-related miscellanea.
19 +#include <cstdint>
20 #include <string>
21 #include <unordered_map>
22 #include <vector>
23 --
24 2.42.0