summaryrefslogtreecommitdiff
path: root/dev-db/mongodb/files
diff options
context:
space:
mode:
authorAlexys Jacob <ultrabug@gentoo.org>2024-05-30 06:46:17 +0000
committerAlexys Jacob <ultrabug@gentoo.org>2024-05-30 06:46:17 +0000
commit6f7385468e9c387af5c97075d9e2ede8cf582c7a (patch)
tree4536173d10c0f7c0b6863d183c9c2ccc8d30b85d /dev-db/mongodb/files
parent581279bf4d84218551086939ededc970910311d2 (diff)
downloadgentoo-6f7385468e9c387af5c97075d9e2ede8cf582c7a.tar.gz
gentoo-6f7385468e9c387af5c97075d9e2ede8cf582c7a.tar.bz2
gentoo-6f7385468e9c387af5c97075d9e2ede8cf582c7a.zip
dev-db/mongodb: drop 4.4.20, 5.0.16-r1
Signed-off-by: Alexys Jacob <ultrabug@gentoo.org>
Diffstat (limited to 'dev-db/mongodb/files')
-rw-r--r--dev-db/mongodb/files/mongodb-4.4.8-gcc-13.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-db/mongodb/files/mongodb-4.4.8-gcc-13.patch b/dev-db/mongodb/files/mongodb-4.4.8-gcc-13.patch
deleted file mode 100644
index 00b82aca94fc..000000000000
--- a/dev-db/mongodb/files/mongodb-4.4.8-gcc-13.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-https://cgit.openembedded.org/meta-openembedded-contrib/commit/?id=856c21b061e000640829e158b9bb9e978a974386
-
-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>
---- 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>
-
-