Loading
botan2: fix build with gcc15
- add patch from fedora that adds `#include <cstdint.h>` to cli.h
Fixes build failure with gcc15:
```
In file included from src/cli/argon2.cpp:7:
src/cli/cli.h:125:71: error: 'uint8_t' does not name a type
125 | static std::string format_blob(const std::string& format, const uint8_t bits[], size_t len);
| ^~~~~~~
src/cli/cli.h:18:1: note: 'uint8_t' is defined in header '<cstdint>';
this is probably fixable by adding '#include <cstdint>'
17 | #include "cli_exceptions.h"
+++ |+#include <cstdint>
18 |
```