diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2017-06-27 16:16:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-06 14:38:13 +0100 |
commit | 838c5ba5bec907bd69875e690d8996d14f636c89 (patch) | |
tree | bcb1bed93bcb644a1efdc1df6a2dca7558fee15b /meta/recipes-graphics/libepoxy | |
parent | cad6482662e2a257b609bbc76435af7356567298 (diff) | |
download | poky-838c5ba5bec907bd69875e690d8996d14f636c89.tar.gz |
libepoxy: Upgrade 1.4.2 -> 1.4.3
Imports the current EGL API registry from Khronos.
Makes EGL support optional: this is reflected in the recipe but
egl is enabled by default as before.
(From OE-Core rev: c6b71bc608c66c216a02fafa4781f19cf6f0f465)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/libepoxy')
-rw-r--r-- | meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb (renamed from meta/recipes-graphics/libepoxy/libepoxy_1.4.2.bb) | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.4.2.bb b/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb index e69e8284e4..c8b398f176 100644 --- a/meta/recipes-graphics/libepoxy/libepoxy_1.4.2.bb +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.4.3.bb | |||
@@ -6,15 +6,16 @@ LICENSE = "MIT" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=58ef4c80d401e07bd9ee8b6b58cf464b" |
7 | 7 | ||
8 | SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz" | 8 | SRC_URI = "https://github.com/anholt/${BPN}/releases/download/${PV}/${BP}.tar.xz" |
9 | SRC_URI[md5sum] = "632fcfd7ae9d21f5a634326d753a89c4" | 9 | SRC_URI[md5sum] = "af4c3ce0fb1143bdc4e43f85695a9bed" |
10 | SRC_URI[sha256sum] = "bea6fdec3d10939954495da898d872ee836b75c35699074cbf02a64fcb80d5b3" | 10 | SRC_URI[sha256sum] = "0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6" |
11 | UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases" | 11 | UPSTREAM_CHECK_URI = "https://github.com/anholt/libepoxy/releases" |
12 | 12 | ||
13 | inherit autotools pkgconfig distro_features_check | 13 | inherit autotools pkgconfig distro_features_check |
14 | 14 | ||
15 | REQUIRED_DISTRO_FEATURES = "opengl" | 15 | REQUIRED_DISTRO_FEATURES = "opengl" |
16 | 16 | ||
17 | DEPENDS = "util-macros virtual/egl" | 17 | DEPENDS = "util-macros" |
18 | 18 | ||
19 | PACKAGECONFIG[egl] = "--enable-egl, --disable-egl, virtual/egl" | ||
19 | PACKAGECONFIG[x11] = "--enable-glx, --disable-glx, virtual/libx11" | 20 | PACKAGECONFIG[x11] = "--enable-glx, --disable-glx, virtual/libx11" |
20 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" | 21 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} egl" |