head 1.1; access; symbols; locks; strict; comment @// @; 1.1 date 2026.04.30.06.39.38; 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$ * Part of patchset to build chromium on NetBSD * Based on OpenBSD's chromium patches, and pkgsrc's qt5-qtwebengine patches --- src/3rdparty/chromium/components/named_system_lock/lock_unittest.cc.orig 2026-03-16 11:40:07.000000000 +0000 +++ src/3rdparty/chromium/components/named_system_lock/lock_unittest.cc @@@@ -18,7 +18,7 @@@@ #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" -#if BUILDFLAG(IS_LINUX) +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) #include #include @@@@ -45,7 +45,7 @@@@ class NamedSystemLockTest : public ::tes const std::string lock_name_ = base::UnguessableToken::Create().ToString(); std::unique_ptr CreateLock() { -#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD) return ScopedLock::Create(lock_name_, base::Seconds(0)); #else CSecurityAttributes sa; @@@@ -95,7 +95,7 @@@@ TEST_F(NamedSystemLockTest, TryLockInThr EXPECT_TRUE(CreateLock()); } -#if BUILDFLAG(IS_LINUX) +#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) TEST_F(NamedSystemLockTest, SharedMemoryWrongPermissions) { // Create a shared memory region with overpermissive perms. int shm_fd = shm_open(lock_name_.c_str(), O_RDWR | O_CREAT | O_EXCL, @