diff options
author | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-04-29 22:08:59 +0000 |
---|---|---|
committer | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-04-29 22:08:59 +0000 |
commit | e07f65b746ff1d52d943dd930315f7ec7a0c726a (patch) | |
tree | 6455e241c8b173fb7059c54c6bde8ef44284f2d0 /www/chromium/files/patch-build_config_allocator.gni | |
parent | dns/unbound: update 1.6.1 -> 1.6.2 (diff) |
www/chromium: update to 58.0.3029.81
MFH: 2017Q2
Security: https://vuxml.freebsd.org/freebsd/95a74a48-2691-11e7-9e2d-e8e0b747a45a.html
Diffstat (limited to 'www/chromium/files/patch-build_config_allocator.gni')
-rw-r--r-- | www/chromium/files/patch-build_config_allocator.gni | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/www/chromium/files/patch-build_config_allocator.gni b/www/chromium/files/patch-build_config_allocator.gni index 519f651fce12..ad404179d272 100644 --- a/www/chromium/files/patch-build_config_allocator.gni +++ b/www/chromium/files/patch-build_config_allocator.gni @@ -1,11 +1,16 @@ ---- build/config/allocator.gni.orig 2017-01-26 00:49:07 UTC +--- build/config/allocator.gni.orig 2017-04-19 19:06:28 UTC +++ build/config/allocator.gni -@@ -44,7 +44,7 @@ assert(use_allocator == "none" || use_al +@@ -45,10 +45,10 @@ assert(use_allocator == "none" || use_al assert(!is_win || use_allocator == "none", "Tcmalloc doesn't work on Windows.") + assert(!is_mac || use_allocator == "none", "Tcmalloc doesn't work on macOS.") - assert( -- !use_experimental_allocator_shim || is_linux || is_android || is_win, -+ !use_experimental_allocator_shim || is_linux || is_android || is_win || is_bsd, - "use_experimental_allocator_shim supported only on Linux, Android and Windows targets") +-assert(!use_experimental_allocator_shim || is_linux || is_android || is_win || +- is_mac, ++assert(!use_experimental_allocator_shim || is_linux || is_android || is_win || ++ is_mac || is_bsd, + "use_experimental_allocator_shim supported only on Linux, Android, " + +- "Windows and macOS targets") ++ "Windows, macOS and BSD targets") if (is_win && use_experimental_allocator_shim) { + assert(!is_component_build, |