head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.09.22.16.47.10; author abs; state Exp; branches; next ; commitid s8oGxWmvLnsKBDWG; desc @@ 1.1 log @Import mongodb-5.0.34 MongoDB 5.0 was released July 13, 2021, and the latest update (5.0.34) was released June 11, 2026 The main consumer of this version of mongodb in pkgsrc is net/unifi, and this will allow users to upgrade theit mongodb4 install (mongodb only allows version+1 upgrades, so 4.4 -> 5.0 then 5.0 -> 6.0 etc @ text @$NetBSD: patch-src_mongo_platform_stack__locator__netbsd.cpp,v 1.1 2023/07/29 11:51:15 adam Exp $ Add NetBSD support. --- src/mongo/platform/stack_locator_netbsd.cpp.orig 2023-07-27 07:57:01.000000000 +0000 +++ src/mongo/platform/stack_locator_netbsd.cpp @@@@ -32,7 +32,6 @@@@ #include "mongo/platform/stack_locator.h" #include -#include #include "mongo/util/assert_util.h" #include "mongo/util/scopeguard.h" @@@@ -52,7 +51,7 @@@@ StackLocator::StackLocator() { invariant(pthread_attr_getstack(&attr, &_end, &size) == 0); - // TODO: Assumes stack grows downward on FreeBSD + // TODO: Assumes stack grows downward on NetBSD _begin = static_cast(_end) + size; } @