From 28656872b6147233ecee832b1110b4a1cf3582b3 Mon Sep 17 00:00:00 2001 From: Rene Ladan Date: Thu, 31 Jul 2025 12:32:40 +0200 Subject: databases/mongodb50: Remove expired port 2025-07-30 databases/mongodb50: EOL from October 2024, see https://www.mongodb.com/legal/support-policy/lifecycles, please use databases/mongodb60 --- .../files/patch-src_mongo_platform_process__id.cpp | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 databases/mongodb50/files/patch-src_mongo_platform_process__id.cpp (limited to 'databases/mongodb50/files/patch-src_mongo_platform_process__id.cpp') diff --git a/databases/mongodb50/files/patch-src_mongo_platform_process__id.cpp b/databases/mongodb50/files/patch-src_mongo_platform_process__id.cpp deleted file mode 100644 index 11f61a36ca08..000000000000 --- a/databases/mongodb50/files/patch-src_mongo_platform_process__id.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- src/mongo/platform/process_id.cpp.orig 2021-03-26 23:29:14 UTC -+++ src/mongo/platform/process_id.cpp -@@ -35,6 +35,10 @@ - #include - #endif - -+#if defined(__FreeBSD__) -+#include -+#endif -+ - #if defined(__linux__) - #include - #include -@@ -72,6 +76,10 @@ inline NativeProcessId getCurrentNativeThreadId() { - uint64_t tid; - invariant(::pthread_threadid_np(NULL, &tid) == 0); - return tid; -+} -+#elif __FreeBSD__ -+inline NativeProcessId getCurrentNativeThreadId() { -+ return pthread_getthreadid_np(); - } - #else - inline NativeProcessId getCurrentNativeThreadId() { -- cgit v1.2.3