aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2012-07-13 09:12:03 +0000
committerEric Bénard <eric@eukrea.com>2012-07-13 11:28:26 +0200
commit4a88a81d281d2ab3f70337f1858a6b680724a9ba (patch)
tree23538e1b9c2de75cdaf488dbaa9e8929916a73df
parent6a4c1d5c5b10bbd4725370475f830e6635e726c6 (diff)
downloadmeta-openembedded-4a88a81d281d2ab3f70337f1858a6b680724a9ba.tar.gz
edje: explicitly enable libsndfile for target recipe
* there is no native/nativesdk support in libsndfile so disable it fro native/nativesdk edje * Thanks to Koen for noticing that it's autodetected and sometimes leaks into feeds Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
-rw-r--r--meta-efl/recipes-efl/efl/edje.inc7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-efl/recipes-efl/efl/edje.inc b/meta-efl/recipes-efl/efl/edje.inc
index 41f04b068f..311fb52688 100644
--- a/meta-efl/recipes-efl/efl/edje.inc
+++ b/meta-efl/recipes-efl/efl/edje.inc
@@ -1,5 +1,5 @@
DESCRIPTION = "Edje is the Enlightenment graphical design & layout library"
-DEPENDS = "lua5.1 eet evas ecore embryo edje-native eina"
+DEPENDS = "lua5.1 eet evas ecore embryo edje-native eina libsndfile1"
DEPENDS_virtclass-native = "lua5.1-native evas-native ecore-native eet-native embryo-native eina-native"
DEPENDS_virtclass-nativesdk = "evas-native ecore-native eet-native embryo-native eina-native"
# GPLv2 because of epp in PN-utils
@@ -35,6 +35,11 @@ do_compile_append() {
require edje-fpu.inc
EXTRA_OECONF += "${@get_edje_fpu_setting(bb, d)}"
+SNDFILE = "--enable-sndfile"
+SNDFILE_virtclass-native = "--disable-sndfile"
+SNDFILE_virtclass-nativesdk = "--disable-sndfile"
+EXTRA_OECONF += "${SNDFILE}"
+
PACKAGES =+ "${PN}-utils"
RDEPENDS_${PN}-utils = "cpp cpp-symlinks embryo-tests"