head 1.2; access; symbols pkgsrc-2020Q4:1.1.0.4 pkgsrc-2020Q4-base:1.1 pkgsrc-2020Q3:1.1.0.2 pkgsrc-2020Q3-base:1.1; locks; strict; comment @// @; 1.2 date 2021.01.13.08.58.44; author nia; state dead; branches; next 1.1; commitid 2qSGTDsO6ZOROxDC; 1.1 date 2020.07.24.07.29.32; author fox; state Exp; branches; next ; commitid aZhiuCZKoUw7TihC; desc @@ 1.2 log @remove www/cliqz the "cliqz" browser was discontinued upstream months ago and i don't think we particularly need another unmaintained firefox fork in pkgsrc that doesn't build. @ text @$NetBSD: patch-mozilla-release_gfx_thebes_gfxPlatform.cpp,v 1.1 2020/07/24 07:29:32 fox Exp $ Don't rely on CrossProcessSemaphore on NetBSD. It has some implementation issues that cause issues (kern/55386, not available on NetBSD<9) This idea is borrowed from macOS which has the same limitation. Taken from www/firefox --- mozilla-release/gfx/thebes/gfxPlatform.cpp.orig 2020-06-03 01:04:50.000000000 +0000 +++ mozilla-release/gfx/thebes/gfxPlatform.cpp @@@@ -2922,6 +2922,10 @@@@ bool gfxPlatform::UsesOffMainThreadCompo } bool gfxPlatform::UsesTiling() const { +#ifdef __NetBSD__ + // Avoid relying on CrossProcessSemaphore + return true; +#else bool usesSkia = GetDefaultContentBackend() == BackendType::SKIA; // We can't just test whether the PaintThread is initialized here because @@@@ -2934,6 +2938,7 @@@@ bool gfxPlatform::UsesTiling() const { return StaticPrefs::layers_enable_tiles_AtStartup() || (StaticPrefs::layers_enable_tiles_if_skia_pomtp_AtStartup() && usesSkia && usesPOMTP); +#endif } bool gfxPlatform::ContentUsesTiling() const { @ 1.1 log @www/cliqz: Updates to 1.38.0 - Removes some of the obsolete patches. - Bumps versions of dependencies. Changes since 1.36.0: Merge with Firefox 78.0.2 @ text @d1 1 a1 1 $NetBSD: patch-gfx_thebes_gfxPlatform.cpp,v 1.7 2020/06/14 18:42:19 maya Exp $ @