dev-libs/botan: add missing include

Add missing include with tools enabled.
Not required for higher versions.

Closes: https://bugs.gentoo.org/942814
Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/43458
Closes: https://github.com/gentoo/gentoo/pull/43458
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Nicolas PARLANT 2025-08-12 09:40:10 +02:00 committed by Sam James
parent 50acfe82d0
commit dc1af608ac
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 14 additions and 0 deletions

View File

@ -57,6 +57,7 @@ PATCHES=(
"${FILESDIR}"/${P}-no-distutils.patch
"${FILESDIR}"/${P}-boost-1.87.patch
"${FILESDIR}"/${P}-cloudflare.patch
"${FILESDIR}"/${P}-include.patch
)
python_check_deps() {

View File

@ -0,0 +1,13 @@
Add missing include
See https://bugs.gentoo.org/942814
> src/.../cli.h: error: uint8_t does not name a type
--- a/src/cli/cli.h
+++ b/src/cli/cli.h
@@ -8,6 +8,7 @@
#define BOTAN_CLI_H_
#include <botan/build.h>
+#include <cstdint>
#include <functional>
#include <ostream>
#include <map>