From 06a5d2111549478c2f0e505de2e21fee4186dee1 Mon Sep 17 00:00:00 2001 From: Rene Ladan Date: Sat, 5 Dec 2020 12:29:57 +0000 Subject: www/chromium: Synchronize with HEAD MFH: r552588 r553068 r553141 r554786 r554895 r555115 r556709 r556720 r556921 www/chromium: drop pkg-message which was only useful for FreeBSD <= 11.2 Phabricator: D26646 www/chromium: Update to version 85.0.4183.121 Submitted by: cem, rene Obtained from: some patches from OpenBSD port www/chromium: Use SNDIO instead of ALSA for audio by default There are stuttering sound issues when using ALSA, so switch to something that works. PR: 250370 www/chromium: attempt to fix build on aarch64 PR: 246982 Reported by: Bob Prohaska Approved by: portmgr (tier-2 blanket) www/chromium: improve cpu features detection on aarch64 Approved by: portmgr (tier-2 blanket) www/chromium: Make online detection always positive Summary: navigator.onLine is currently broken in www/chromium. This change introduce a workaround that always return positive for online detection. Sponsored by: The FreeBSD Foundation Submitted by: Ka Ho Ng Differential Revision: https://reviews.freebsd.org/D26490 www/chromium: Update to version 87.0.4280.66 Submitted by: Matthias Wolf, cem, rene Obtained from: Some patches from OpenBSD port (robert@openbsd.org) Unbreak INDEX www/chromium: Update to 87.0.4280.88 https://chromereleases.googleblog.com/2020/12/stable-channel-update-for-desktop.html Changes: https://chromium.googlesource.com/chromium/src/+log/87.0.4280.67..87.0.4280.88?pretty=fuller&n=10000 Approved by: jrm Differential Revision: https://reviews.freebsd.org/D27452 --- www/chromium/files/patch-tools_gn_src_gn_version.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 www/chromium/files/patch-tools_gn_src_gn_version.h (limited to 'www/chromium/files/patch-tools_gn_src_gn_version.h') diff --git a/www/chromium/files/patch-tools_gn_src_gn_version.h b/www/chromium/files/patch-tools_gn_src_gn_version.h new file mode 100644 index 000000000000..5a234a3342e3 --- /dev/null +++ b/www/chromium/files/patch-tools_gn_src_gn_version.h @@ -0,0 +1,15 @@ +--- tools/gn/src/gn/version.h.orig 2020-11-25 19:13:52 UTC ++++ tools/gn/src/gn/version.h +@@ -15,9 +15,9 @@ class Version { + + static std::optional FromString(std::string s); + +- int major() const { return major_; } +- int minor() const { return minor_; } +- int patch() const { return patch_; } ++ int gmajor() const { return major_; } ++ int gminor() const { return minor_; } ++ int gpatch() const { return patch_; } + + bool operator==(const Version& other) const; + bool operator<(const Version& other) const; -- cgit v1.2.3