summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorZhenhua Luo <zhenhua.luo@freescale.com>2013-04-11 16:31:28 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-11 16:41:16 +0100
commit3b2713684e5db4c6ec2adff77dc2bb50b740eeab (patch)
tree72b0225d5eca9013e1de770a5a2db663164fd788 /meta
parent48fe02a1042cdd258fce316ff2b17ba8c183aa64 (diff)
downloadpoky-3b2713684e5db4c6ec2adff77dc2bb50b740eeab.tar.gz
wayland: add necessary dependencies to fix build error
add libffi into DEPENDS to fix following build error: | checking for FFI... no | configure: error: Package requirements (libffi) were not met: | | No package 'libffi' found (From OE-Core rev: 23d6746efe1b3f31ad156db58fbc2767f750b712) Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-graphics/wayland/wayland_1.0.6.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-graphics/wayland/wayland_1.0.6.bb b/meta/recipes-graphics/wayland/wayland_1.0.6.bb
index 6385933133..1585479f5c 100644
--- a/meta/recipes-graphics/wayland/wayland_1.0.6.bb
+++ b/meta/recipes-graphics/wayland/wayland_1.0.6.bb
@@ -10,6 +10,8 @@ LICENSE = "MIT"
10LIC_FILES_CHKSUM = "file://COPYING;md5=1d4476a7d98dd5691c53d4d43a510c72 \ 10LIC_FILES_CHKSUM = "file://COPYING;md5=1d4476a7d98dd5691c53d4d43a510c72 \
11 file://src/wayland-server.c;endline=21;md5=079ae21dbf98ada52ec23744851b0a5c" 11 file://src/wayland-server.c;endline=21;md5=079ae21dbf98ada52ec23744851b0a5c"
12 12
13PR = "r1"
14
13SRC_URI = "http://wayland.freedesktop.org/releases/${BPN}-${PV}.tar.xz" 15SRC_URI = "http://wayland.freedesktop.org/releases/${BPN}-${PV}.tar.xz"
14SRC_URI[md5sum] = "936a2590aea69fa3c0cf234d54b9137c" 16SRC_URI[md5sum] = "936a2590aea69fa3c0cf234d54b9137c"
15SRC_URI[sha256sum] = "f52a012df699eff434b0f49e56000d6978b5f781048402ca8e0232242970fc49" 17SRC_URI[sha256sum] = "f52a012df699eff434b0f49e56000d6978b5f781048402ca8e0232242970fc49"
@@ -19,8 +21,8 @@ inherit autotools pkgconfig
19# We need wayland-native for the wayland-scanner utility 21# We need wayland-native for the wayland-scanner utility
20BBCLASSEXTEND = "native" 22BBCLASSEXTEND = "native"
21 23
22DEPENDS_virtclass-native = "expat-native" 24DEPENDS_virtclass-native = "expat-native libffi-native"
23DEPENDS = "expat wayland-native" 25DEPENDS = "expat libffi wayland-native"
24 26
25EXTRA_OECONF_virtclass-native = "--disable-documentation" 27EXTRA_OECONF_virtclass-native = "--disable-documentation"
26EXTRA_OECONF = "--disable-documentation --disable-scanner" 28EXTRA_OECONF = "--disable-documentation --disable-scanner"