diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2024-03-21 11:13:05 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-03-20 20:16:07 -0700 |
commit | 7cf7c4c7828e9ad673f717f4cad9997314d4b1aa (patch) | |
tree | 6d312f3b628c96e375e01738133ce6455fd8e7e1 /meta-oe/recipes-extended/minifi-cpp/files/0006-OsUtils.h-add-missing-header-cstdint-for-int64_t.patch | |
parent | 0c19e65a0969dc79093284e98b43fd46468a499f (diff) | |
download | meta-openembedded-7cf7c4c7828e9ad673f717f4cad9997314d4b1aa.tar.gz |
minifi-cpp: upgrade 0.7.0 -> 0.15.0
Release Notes:
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=65145325#ReleaseNotesMiNiFi(C++)-Versioncpp-0.15.0
* Use external dependencies where possible to get rid of bundled
packages.
* Add PACKAGECONFIGs.
* Use its own systemd service file.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
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, 36 insertions, 0 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 new file mode 100644 index 0000000000..38893e74ac --- /dev/null +++ b/meta-oe/recipes-extended/minifi-cpp/files/0006-OsUtils.h-add-missing-header-cstdint-for-int64_t.patch | |||
@@ -0,0 +1,36 @@ | |||
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 | |||