diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-06-21 08:18:47 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-06-21 20:03:56 +0200 |
commit | 487345238d2f05af344f88dbf716a48895065977 (patch) | |
tree | 07d939ce368bb7ebe6ecb78b3af47152fe7b43e1 /meta-efl/recipes-efl | |
parent | 141b959e7b3bacd4340c8cf924fc08ee4addcad4 (diff) | |
download | meta-openembedded-487345238d2f05af344f88dbf716a48895065977.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>
Diffstat (limited to 'meta-efl/recipes-efl')
-rw-r--r-- | meta-efl/recipes-efl/efl/edje.inc | 7 |
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 41f04b068..311fb5268 100644 --- a/meta-efl/recipes-efl/efl/edje.inc +++ b/meta-efl/recipes-efl/efl/edje.inc | |||
@@ -1,5 +1,5 @@ | |||
1 | DESCRIPTION = "Edje is the Enlightenment graphical design & layout library" | 1 | DESCRIPTION = "Edje is the Enlightenment graphical design & layout library" |
2 | DEPENDS = "lua5.1 eet evas ecore embryo edje-native eina" | 2 | DEPENDS = "lua5.1 eet evas ecore embryo edje-native eina libsndfile1" |
3 | DEPENDS_virtclass-native = "lua5.1-native evas-native ecore-native eet-native embryo-native eina-native" | 3 | DEPENDS_virtclass-native = "lua5.1-native evas-native ecore-native eet-native embryo-native eina-native" |
4 | DEPENDS_virtclass-nativesdk = "evas-native ecore-native eet-native embryo-native eina-native" | 4 | DEPENDS_virtclass-nativesdk = "evas-native ecore-native eet-native embryo-native eina-native" |
5 | # GPLv2 because of epp in PN-utils | 5 | # GPLv2 because of epp in PN-utils |
@@ -35,6 +35,11 @@ do_compile_append() { | |||
35 | require edje-fpu.inc | 35 | require edje-fpu.inc |
36 | EXTRA_OECONF += "${@get_edje_fpu_setting(bb, d)}" | 36 | EXTRA_OECONF += "${@get_edje_fpu_setting(bb, d)}" |
37 | 37 | ||
38 | SNDFILE = "--enable-sndfile" | ||
39 | SNDFILE_virtclass-native = "--disable-sndfile" | ||
40 | SNDFILE_virtclass-nativesdk = "--disable-sndfile" | ||
41 | EXTRA_OECONF += "${SNDFILE}" | ||
42 | |||
38 | PACKAGES =+ "${PN}-utils" | 43 | PACKAGES =+ "${PN}-utils" |
39 | RDEPENDS_${PN}-utils = "cpp cpp-symlinks embryo-tests" | 44 | RDEPENDS_${PN}-utils = "cpp cpp-symlinks embryo-tests" |
40 | 45 | ||