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/curl_io_handler.cc.orig 2026-06-25 08:06:49.062007872 +0000 +++ src/iohandler/curl_io_handler.cc @@@@ -237,9 +237,9 @@@@ std::size_t CurlIOHandler::curlCallback(void* ptr, std lock.unlock(); - std::memcpy(ego->buffer + bLocal, ptr, write1); + memcpy(ego->buffer + bLocal, ptr, write1); if (write2) - std::memcpy(ego->buffer, static_cast(ptr) + maxWrite, write2); + memcpy(ego->buffer, static_cast(ptr) + maxWrite, write2); lock.lock(); @