diff options
author | Andrew F. Davis <afd@ti.com> | 2019-09-13 15:36:11 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-18 12:09:02 +0100 |
commit | 0e599227ee416006de3b32ce65b24704f4ad1beb (patch) | |
tree | a088fa6400b43d31e306bb4942ca2bb3ad58d1ac | |
parent | 6133a8ef25e38c635f23d8047c28a19afdfeaf85 (diff) | |
download | poky-0e599227ee416006de3b32ce65b24704f4ad1beb.tar.gz |
libepoxy: Disable x11 when not building for x11
Although glx support is turned off, the build still tries to pull in some
x11 components, disable x11 explicitly.
(From OE-Core rev: a96272dc0b5b6b76a4858981461f3bd126dc99b3)
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb b/meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb index c8d1650c63..825453ab28 100644 --- a/meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.5.3.bb | |||
@@ -18,7 +18,7 @@ REQUIRED_DISTRO_FEATURES_class-native = "" | |||
18 | REQUIRED_DISTRO_FEATURES_class-nativesdk = "" | 18 | REQUIRED_DISTRO_FEATURES_class-nativesdk = "" |
19 | 19 | ||
20 | PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl" | 20 | PACKAGECONFIG[egl] = "-Degl=yes, -Degl=no, virtual/egl" |
21 | PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no, virtual/libx11 virtual/libgl" | 21 | PACKAGECONFIG[x11] = "-Dglx=yes, -Dglx=no -Dx11=false, virtual/libx11 virtual/libgl" |
22 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl" | 22 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl" |
23 | 23 | ||
24 | EXTRA_OEMESON += "-Dtests=false" | 24 | EXTRA_OEMESON += "-Dtests=false" |