head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.06.25.08.16.54; author wiz; state Exp; branches; next ; commitid BpEIr6md5BNQE9LG; desc @@ 1.1 log @gerbera: fix build Not sure where these std:: problems come from, the fmt changes are needed for fmtlib 12.2.0 @ text @$NetBSD$ Fix build. https://github.com/gerbera/gerbera/issues/3897 --- src/util/thread_executor.cc.orig 2026-06-25 08:08:22.982910419 +0000 +++ src/util/thread_executor.cc @@@@ -53,7 +53,7 @@@@ void ThreadExecutor::startThread() this); if (ret != 0) { - log_error("Could not start thread: {}", std::strerror(ret)); + log_error("Could not start thread: {}", strerror(ret)); } else { threadRunning = true; } @