head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2026.04.30.06.38.39; author adam; state Exp; branches; next ; commitid nIoyarLNs03FUWDG; desc @@ 1.1 log @qt6: 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 on NetBSD. --- src/multimedia/audio/qaudiosystem_p.h.orig 2026-03-27 13:20:17.750424083 +0000 +++ src/multimedia/audio/qaudiosystem_p.h @@@@ -229,7 +229,7 @@@@ inline auto withTemporaryBuffer(size_t bufferSize, Fun inline auto withTemporaryBuffer(size_t bufferSize, Functor &&f) noexcept QT_MM_NONBLOCKING { if (bufferSize <= limit) Q_LIKELY_BRANCH { -#ifdef alloca +#if defined(alloca) || defined(__NetBSD__) std::byte *stackBuffer = reinterpret_cast(alloca(bufferSize)); auto stackBufferSpan = QSpan{ stackBuffer, @