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_runner.h.orig 2026-06-25 07:57:05.592665777 +0000 +++ src/util/thread_runner.h @@@@ -35,6 +35,7 @@@@ #include #include #include +#include #include using ThreadProc = std::function; @@@@ -191,7 +192,7 @@@@ class ThreadRunner : public ThreadExecutor { (protecte this); if (ret != 0) { - log_error("Could not start thread {}: {}", threadName, std::strerror(ret)); + log_error("Could not start thread {}: {}", threadName, strerror(ret)); } else { threadRunning = true; } @