Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
Date: Thu, 01 Mar 2018 06:55:52
Message-Id: 1519887010.a2a41c208ea227236ab76fc668824ea18ec49836.mattst88@gentoo
1 commit: a2a41c208ea227236ab76fc668824ea18ec49836
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 1 06:44:55 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 1 06:50:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2a41c20
7
8 media-libs/libepoxy: Fix Meson configuration options
9
10 media-libs/libepoxy/libepoxy-9999.ebuild | 4 +++-
11 1 file changed, 3 insertions(+), 1 deletion(-)
12
13 diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
14 index 97ad0938592..2271e9db287 100644
15 --- a/media-libs/libepoxy/libepoxy-9999.ebuild
16 +++ b/media-libs/libepoxy/libepoxy-9999.ebuild
17 @@ -38,7 +38,9 @@ src_unpack() {
18
19 multilib_src_configure() {
20 local emesonargs=(
21 - -Denable-glx=$(usex X)
22 + -Degl=yes
23 + -Dglx=$(usex X)
24 + -Dx11=$(usex X true false)
25 )
26 meson_src_configure
27 }