diff options
author | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-09-17 11:10:43 +0000 |
---|---|---|
committer | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-09-17 11:10:43 +0000 |
commit | 4181ea8c1c72a23fdd9f1253794cd99bc04b5bc1 (patch) | |
tree | 1bbf19adfa65f203d6dc4e226b48c372853bdb2d /www/chromium/files/patch-chrome_common_chrome__features.h | |
parent | sysutils/passwordsafe:Add Yubikey support (diff) |
www/chromium: update to 61.0.3163.79
- Add arm64 support [1]
- Fix segfault on i386 [2]
- Switch to USES=compiler:c++14-lang for devel/chromium-gn because chromium
needs __builtin_add_overflow and friends to build.
Changelog: https://chromium.googlesource.com/chromium/src/+log/60.0.3112.113..61.0.3163.79?pretty=fuller&n=10000
PR: 220291 [1], 221266 [2]
Submitted by: Andrew [1]
Reported by: Patrick <doctorwhoguy@gmail.com> [2]
MFH: 2017Q3
Diffstat (limited to 'www/chromium/files/patch-chrome_common_chrome__features.h')
-rw-r--r-- | www/chromium/files/patch-chrome_common_chrome__features.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/chromium/files/patch-chrome_common_chrome__features.h b/www/chromium/files/patch-chrome_common_chrome__features.h new file mode 100644 index 000000000000..0acfa26ea21c --- /dev/null +++ b/www/chromium/files/patch-chrome_common_chrome__features.h @@ -0,0 +1,14 @@ +--- chrome/common/chrome_features.h.orig 2017-09-07 15:16:51.725565000 +0200 ++++ chrome/common/chrome_features.h 2017-09-07 15:17:47.995642000 +0200 +@@ -43,9 +43,9 @@ + extern const base::Feature kAutomaticTabDiscarding; + #endif // defined(OS_WIN) || defined(OS_MACOSX) + +-#if defined(OS_WIN) || defined(OS_LINUX) ++#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_BSD) + extern const base::Feature kBackgroundModeAllowRestart; +-#endif // defined(OS_WIN) || defined(OS_LINUX) ++#endif // defined(OS_WIN) || defined(OS_LINUX) || defined(OS_BSD) + + extern const base::Feature kBlockPromptsIfDismissedOften; + extern const base::Feature kBlockPromptsIfIgnoredOften; |