diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2015-05-10 19:17:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-14 11:41:11 +0100 |
commit | 1722ce23075a00e111145cad6daa2ef87ba391fe (patch) | |
tree | 68aba0e232beca1f632d13b3ee798b48af9298c8 /meta/recipes-sato/libowl | |
parent | 777080af697d35b3f983465d6a094f4171e57e56 (diff) | |
download | openembedded-core-1722ce23075a00e111145cad6daa2ef87ba391fe.tar.gz openembedded-core-1722ce23075a00e111145cad6daa2ef87ba391fe.tar.bz2 openembedded-core-1722ce23075a00e111145cad6daa2ef87ba391fe.zip |
libowl/settings-daemon/libnotify: add x11 to REQUIRED_DISTRO_FEATURES
The libowl, settings-daemon and libnotify requires gdk/gdkx.h which is
provided by gtk when x11 in DISTRO_FEATURES, so add x11 to
REQUIRED_DISTRO_FEATURES.
The leafpad, settings-daemon and oh-puzzles requires
libowl or settings-daemon, so add xx to REQUIRED_DISTRO_FEATURES for
them too.
The leafpad can't be built without libowl, so depends in directly rather
than use DEPENDS_append_poky.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta/recipes-sato/libowl')
-rw-r--r-- | meta/recipes-sato/libowl/libowl_git.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-sato/libowl/libowl_git.bb b/meta/recipes-sato/libowl/libowl_git.bb index 3ccd3406bd..9cc47dbd53 100644 --- a/meta/recipes-sato/libowl/libowl_git.bb +++ b/meta/recipes-sato/libowl/libowl_git.bb @@ -17,4 +17,7 @@ SRC_URI = "git://git.yoctoproject.org/${BPN}" S = "${WORKDIR}/git" -inherit autotools pkgconfig +inherit autotools pkgconfig distro_features_check + +# Requires gdk/gdkx.h which is provided by gtk when x11 in DISTRO_FEATURES +REQUIRED_DISTRO_FEATURES = "x11" |