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: 'isnan' was not declared in this scope. --- src/3rdparty/chromium/third_party/pdfium/fxjs/cjs_runtime.cpp.orig 2026-04-29 16:46:05.607378958 +0000 +++ src/3rdparty/chromium/third_party/pdfium/fxjs/cjs_runtime.cpp @@@@ -236,7 +236,7 @@@@ v8::Local CJS_Runtime::MaybeCoerceToNumber( } v8::Local num = maybeNum.ToLocalChecked(); - if (isnan(num->Value()) && !bAllowNaN) { + if (std::isnan(num->Value()) && !bAllowNaN) { return value; } @