Gentoo Archives: gentoo-commits

From: Ian Stakenvicius <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mozilla:master commit in: eclass/
Date: Mon, 25 Jul 2016 21:27:50
Message-Id: 1469482037.c49445493193a4b4efc99add9cf229767bd2a78d.axs@gentoo
1 commit: c49445493193a4b4efc99add9cf229767bd2a78d
2 Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 25 21:27:17 2016 +0000
4 Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 25 21:27:17 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=c4944549
7
8 mozconfig-v6.48.eclass: also force gfx.content.azure.backends to cairo if USE=-skia
9
10 eclass/mozconfig-v6.48.eclass | 2 ++
11 1 file changed, 2 insertions(+)
12
13 diff --git a/eclass/mozconfig-v6.48.eclass b/eclass/mozconfig-v6.48.eclass
14 index d5040e0..841fd48 100644
15 --- a/eclass/mozconfig-v6.48.eclass
16 +++ b/eclass/mozconfig-v6.48.eclass
17 @@ -406,5 +406,7 @@ mozconfig_install_prefs() {
18 if ! use skia ; then
19 echo "lockPref(\"gfx.canvas.azure.backends\",\"cairo\");" \
20 >>"${prefs_file}" || die
21 + echo "lockPref(\"gfx.content.azure.backends\",\"cairo\");" \
22 + >>"${prefs_file}" || die
23 fi
24 }