diff options
Diffstat (limited to 'meta-oe/recipes-extended/minifi-cpp/files/0006-OsUtils.h-add-missing-header-cstdint-for-int64_t.patch')
-rw-r--r-- | meta-oe/recipes-extended/minifi-cpp/files/0006-OsUtils.h-add-missing-header-cstdint-for-int64_t.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta-oe/recipes-extended/minifi-cpp/files/0006-OsUtils.h-add-missing-header-cstdint-for-int64_t.patch b/meta-oe/recipes-extended/minifi-cpp/files/0006-OsUtils.h-add-missing-header-cstdint-for-int64_t.patch deleted file mode 100644 index 38893e74ac..0000000000 --- a/meta-oe/recipes-extended/minifi-cpp/files/0006-OsUtils.h-add-missing-header-cstdint-for-int64_t.patch +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | From 08d1b4b66fedde97eefb5e3ff6aa98fd02be7c21 Mon Sep 17 00:00:00 2001 | ||
2 | From: Yi Zhao <yi.zhao@windriver.com> | ||
3 | Date: Wed, 20 Mar 2024 10:03:14 +0800 | ||
4 | Subject: [PATCH] OsUtils.h: add missing header <cstdint> for int64_t | ||
5 | |||
6 | Fix build with musl: | ||
7 | libminifi/include/utils/OsUtils.h:31:1: error: 'int64_t' does not name a type | ||
8 | 31 | int64_t getCurrentProcessPhysicalMemoryUsage(); | ||
9 | | ^~~~~~~ | ||
10 | libminifi/include/utils/OsUtils.h:22:1: note: 'int64_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'? | ||
11 | 21 | #include <system_error> | ||
12 | +++ |+#include <cstdint> | ||
13 | 22 | | ||
14 | |||
15 | Upstream-Status: Pending | ||
16 | |||
17 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> | ||
18 | --- | ||
19 | libminifi/include/utils/OsUtils.h | 1 + | ||
20 | 1 file changed, 1 insertion(+) | ||
21 | |||
22 | diff --git a/libminifi/include/utils/OsUtils.h b/libminifi/include/utils/OsUtils.h | ||
23 | index a7117233..5e623d1a 100644 | ||
24 | --- a/libminifi/include/utils/OsUtils.h | ||
25 | +++ b/libminifi/include/utils/OsUtils.h | ||
26 | @@ -19,6 +19,7 @@ | ||
27 | #include <string> | ||
28 | #include <optional> | ||
29 | #include <system_error> | ||
30 | +#include <cstdint> | ||
31 | |||
32 | struct sockaddr; | ||
33 | |||
34 | -- | ||
35 | 2.25.1 | ||
36 | |||