summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2014-06-19 11:06:47 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2014-08-23 13:37:49 +0200
commit9cab1276c085c120755113d991100bb458bb1dfa (patch)
tree95fa305f2f4c9ba510fda3bfe0f1611c594953bc
parent73afc00681b48c21f05f7769b8d745e7ee5398b8 (diff)
downloadmeta-openembedded-9cab1276c085c120755113d991100bb458bb1dfa.tar.gz
glmark2: Add virtual/libx11 dependency
* without it, do_configure fails: | Checking for 'x11' : not found | The configuration failed * inherit distro_features_check Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
index 031e3b3d4..2efe6d6e4 100644
--- a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
+++ b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb
@@ -8,14 +8,17 @@ LICENSE = "GPLv3+ & SGIv1"
8LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ 8LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
9 file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552" 9 file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552"
10 10
11DEPENDS = "libpng12 jpeg" 11DEPENDS = "libpng12 jpeg virtual/libx11"
12
13# depends on virtual/libx11
14REQUIRED_DISTRO_FEATURES = "x11"
12 15
13SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" 16SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz"
14 17
15SRC_URI[md5sum] = "4f306664aa3886fa0cf93853603603f8" 18SRC_URI[md5sum] = "4f306664aa3886fa0cf93853603603f8"
16SRC_URI[sha256sum] = "bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47" 19SRC_URI[sha256sum] = "bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47"
17 20
18inherit waf pkgconfig 21inherit waf pkgconfig distro_features_check
19 22
20PACKAGECONFIG ?= "gl gles2" 23PACKAGECONFIG ?= "gl gles2"
21 24