head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.04.30.06.39.44; author adam; state Exp; branches; next ; commitid EBfLiYmrAFQ3VWDG; desc @@ 1.1 log @qt6-qtwebengine: updated to 6.11.0 The 6.11 release for Qt Framework is now available, with improved performance, newly supported techniques and capabilities on graphics, connectivity and languages, not to mention a whole new approach to asynchronous C++ coding. Take a closer look. https://www.qt.io/blog/qt-6.11-released @ text @$NetBSD$ Fix build: error: 'isfinite' was not declared in this scope. --- src/3rdparty/chromium/third_party/pdfium/fxjs/js_define.cpp.orig 2026-04-29 16:47:11.805638499 +0000 +++ src/3rdparty/chromium/third_party/pdfium/fxjs/js_define.cpp @@@@ -59,7 +59,7 @@@@ double JS_DateParse(v8::Isolate* pIsolate, const WideS } double date = value.As()->Value(); - return isfinite(date) ? FX_LocalTime(date) : date; + return std::isfinite(date) ? FX_LocalTime(date) : date; } v8::LocalVector ExpandKeywordParams( @