head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.06.25.08.16.53; 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/iohandler/process_io_handler.cc.orig 2026-06-25 08:04:59.795206674 +0000 +++ src/iohandler/process_io_handler.cc @@@@ -148,7 +148,7 @@@@ void ProcessIOHandler::open(enum UpnpOpenFileMode mode if (fd == -1) { if (errno == ENXIO) { - throw TryAgainException(fmt::format("open failed: {}", std::strerror(errno))); + throw TryAgainException(fmt::format("open failed: {}", strerror(errno))); } killAll(); @