mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-02 15:34:18 +00:00
* add 'Upstream-Status: Pending' where it was missing and fix malformatted one in 1296.patch * fixes: ERROR: lib32-mongodb-4.4.24-r0 do_patch: QA Issue: Malformed Upstream-Status in patch meta-oe/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/1296.patch Please correct according to https://docs.yoctoproject.org/contributor-guide/recipe-style-guide.html#patch-upstream-status : Upstream-Status: submitted https://github.com/mongodb/mongo/pull/1296 [patch-status] ERROR: lib32-mongodb-4.4.24-r0 do_patch: QA Issue: Missing Upstream-Status in patch meta-oe/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/0001-free_mon-Include-missing-cstdint.patch Please add according to https://docs.yoctoproject.org/contributor-guide/recipe-style-guide.html#patch-upstream-status . [patch-status] ... Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 lines
749 B
Diff
29 lines
749 B
Diff
From 5d8218b8a1b5bc71e2a0cf543a000e194daba599 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Sun, 29 Jan 2023 17:15:30 -0800
|
|
Subject: [PATCH] free_mon: Include missing <cstdint>
|
|
|
|
gcc 13 moved some includes around and as a result <cstdint> is no
|
|
longer transitively included [1]. Explicitly include it
|
|
for uintXX_t.
|
|
|
|
[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
Upstream-Status: Pending
|
|
---
|
|
src/mongo/db/free_mon/free_mon_options.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/src/mongo/db/free_mon/free_mon_options.h
|
|
+++ b/src/mongo/db/free_mon/free_mon_options.h
|
|
@@ -29,6 +29,7 @@
|
|
|
|
#pragma once
|
|
|
|
+#include <cstdint>
|
|
#include <string>
|
|
#include <vector>
|
|
|