diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-04-13 21:59:49 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-19 13:34:41 +0100 |
commit | 529c4c082246a8c2579033fa7311fe91c08be7b9 (patch) | |
tree | 33075a757849df9c6cbb9cacbe23a953f75f343c /meta/recipes-graphics/libepoxy | |
parent | 21efa90e3cee7ea920b0266a14e55fadda585b4a (diff) | |
download | poky-529c4c082246a8c2579033fa7311fe91c08be7b9.tar.gz |
libepoxy: DEPENDS on virtual/egl and virtual/libx11
Fixed do_configure error:
configure: error: libX11 headers (libx11-dev) required to build with GLX support
and do_compile error:
../include/epoxy/egl_generated.h:10:29: fatal error: EGL/eglplatform.h: No such file or directory
#include "EGL/eglplatform.h"
The dependencies form its README.md:
* automake
* libegl1-mesa-dev
* xutils-dev
(From OE-Core rev: 04193b96fa6e41f9de7ea5eb15be133ac63b1ecc)
Signed-off-by: Robert Yang <liezhi.yang@windriver.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.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/libepoxy/libepoxy_1.2.bb b/meta/recipes-graphics/libepoxy/libepoxy_1.2.bb index 4357331e33..4fbc861066 100644 --- a/meta/recipes-graphics/libepoxy/libepoxy_1.2.bb +++ b/meta/recipes-graphics/libepoxy/libepoxy_1.2.bb | |||
@@ -13,4 +13,4 @@ S = "${WORKDIR}/git" | |||
13 | 13 | ||
14 | inherit autotools pkgconfig | 14 | inherit autotools pkgconfig |
15 | 15 | ||
16 | DEPENDS = "util-macros" | 16 | DEPENDS = "util-macros virtual/egl virtual/libx11" |