diff options
author | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2018-08-07 13:56:28 +0000 |
---|---|---|
committer | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2018-08-07 13:56:28 +0000 |
commit | 76360496491c8b5323b6655362a2193e36b3d774 (patch) | |
tree | 0a15731855dec4e02e5f3187543ac18c0bceebd0 /www/chromium/files/patch-ui_gfx_BUILD.gn | |
parent | Update to 1.14.0. (diff) |
www/chromium: Update to 68.0.3440.84
Changelog: https://chromium.googlesource.com/chromium/src/+log/67.0.3396.87..68.0.3440.84?pretty=fuller&n=10000
At the moment pkg-message says that in order to work around the hanging tabs problem the user may wish to run the following commands:
# [ -d ~{user}/.cache/chromium ] || mkdir ~{user}/.cache/chromium
# echo "md $(echo ~{user})/.cache/chromium mfs rw,late,-w{user}:{group},-s300m 2 0" >> /etc/fstab
# mount ~{user}/.cache/chromium
Add fix-hanging-tabs.sh script to the DATADIR [1], which simplifies the process to just running
/usr/local/share/chromium/fix-hanging-tabs.sh $user $group
PR: 230264 [1]
Submitted by: 0mp [1]
MFH: 2018Q3
Security: http://vuxml.freebsd.org/freebsd/b9c525d9-9198-11e8-beba-080027ef1a23.html
Notes
Notes:
svn path=/head/; revision=476599
Diffstat (limited to 'www/chromium/files/patch-ui_gfx_BUILD.gn')
-rw-r--r-- | www/chromium/files/patch-ui_gfx_BUILD.gn | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/chromium/files/patch-ui_gfx_BUILD.gn b/www/chromium/files/patch-ui_gfx_BUILD.gn new file mode 100644 index 000000000000..1ceeeae8c293 --- /dev/null +++ b/www/chromium/files/patch-ui_gfx_BUILD.gn @@ -0,0 +1,11 @@ +--- ui/gfx/BUILD.gn.orig 2018-08-01 00:09:48.000000000 +0200 ++++ ui/gfx/BUILD.gn 2018-08-04 22:24:28.133674000 +0200 +@@ -568,7 +568,7 @@ + deps += [ "//third_party/libdrm" ] + } + +- if (is_linux || is_android) { ++ if ((is_linux || is_android) && !is_bsd) { + deps += [ "//third_party/libsync" ] + } + |