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-third__party_boringssl_BUILD.gn | |
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-third__party_boringssl_BUILD.gn')
-rw-r--r-- | www/chromium/files/patch-third__party_boringssl_BUILD.gn | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/www/chromium/files/patch-third__party_boringssl_BUILD.gn b/www/chromium/files/patch-third__party_boringssl_BUILD.gn index 549874c3e4a5..555eb5a0998c 100644 --- a/www/chromium/files/patch-third__party_boringssl_BUILD.gn +++ b/www/chromium/files/patch-third__party_boringssl_BUILD.gn @@ -1,6 +1,6 @@ ---- third_party/boringssl/BUILD.gn.orig 2017-04-19 19:06:51 UTC -+++ third_party/boringssl/BUILD.gn -@@ -83,7 +83,7 @@ if (is_win && !is_msan) { +--- third_party/boringssl/BUILD.gn.orig 2017-09-05 21:05:42.000000000 +0200 ++++ third_party/boringssl/BUILD.gn 2017-09-06 22:45:41.435863000 +0200 +@@ -85,7 +85,7 @@ } else if (current_cpu == "x64") { if (is_mac) { sources += crypto_sources_mac_x86_64 @@ -9,7 +9,7 @@ sources += crypto_sources_linux_x86_64 } else { public_configs = [ ":no_asm_config" ] -@@ -91,14 +91,14 @@ if (is_win && !is_msan) { +@@ -93,13 +93,13 @@ } else if (current_cpu == "x86") { if (is_mac) { sources += crypto_sources_mac_x86 @@ -19,11 +19,18 @@ } else { public_configs = [ ":no_asm_config" ] } -- } else if (current_cpu == "arm" && (is_linux || is_android)) { -+ } else if (current_cpu == "arm" && (is_linux || is_bsd || is_android)) { - sources += crypto_sources_linux_arm -- } else if (current_cpu == "arm64" && (is_linux || is_android)) { -+ } else if (current_cpu == "arm64" && (is_linux || is_bsd || is_android)) { - sources += crypto_sources_linux_aarch64 - } else { - public_configs = [ ":no_asm_config" ] + } else if (current_cpu == "arm") { +- if (is_linux || is_android) { ++ if (is_linux || is_bsd || is_android) { + sources += crypto_sources_linux_arm + } else if (is_ios) { + sources += crypto_sources_ios_arm +@@ -107,7 +107,7 @@ + public_configs = [ ":no_asm_config" ] + } + } else if (current_cpu == "arm64") { +- if (is_linux || is_android) { ++ if (is_linux || is_bsd || is_android) { + sources += crypto_sources_linux_aarch64 + } else if (is_ios) { + sources += crypto_sources_ios_aarch64 |