Codebase list liborcus / 20a909a
Import Debian changes 0.17.2-3 liborcus (0.17.2-3) unstable; urgency=medium . * debian/patches/cstdint.diff: add missing #include <cstdint> to fix build with gcc 13 (closes: #1037732) . Rene Engelhard 10 months ago
3 changed file(s) with 30 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 liborcus (0.17.2-3) unstable; urgency=medium
1
2 * debian/patches/cstdint.diff: add missing #include <cstdint> to fix
3 build with gcc 13 (closes: #1037732)
4
5 -- Rene Engelhard <rene@debian.org> Wed, 14 Jun 2023 18:35:12 +0200
6
07 liborcus (0.17.2-2) unstable; urgency=medium
18
29 * Team upload.
0 diff --git a/include/orcus/base64.hpp b/include/orcus/base64.hpp
1 index f880b7fe79bc200df5399f433a92f19cd91cc7b6..44c70175dab699543ad2916511b864de6c111b67 100644
2 --- a/include/orcus/base64.hpp
3 +++ b/include/orcus/base64.hpp
4 @@ -9,6 +9,7 @@
5 #define __ORCUS_BASE64_HPP__
6
7 #include "env.hpp"
8 +#include <cstdint>
9 #include <vector>
10 #include <string>
11
12 --- liborcus-0.17.2.orig/include/orcus/types.hpp
13 +++ liborcus-0.17.2/include/orcus/types.hpp
14 @@ -8,6 +8,7 @@
15 #ifndef INCLUDED_ORCUS_TYPES_HPP
16 #define INCLUDED_ORCUS_TYPES_HPP
17
18 +#include <cstdint>
19 #include <cstdlib>
20 #include <vector>
21 #include <string>
0 cstdint.diff