diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2013-07-04 10:14:48 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-09 07:56:13 -0700 |
commit | 663564d14b09073765e2c4657f1e6c94dab6a365 (patch) | |
tree | f8325cc5579d353b8ec6360762d463050af8c5c9 | |
parent | 50fdebe819e4d51bc8ba011a0d4a090a8ded64b8 (diff) | |
download | openembedded-core-663564d14b09073765e2c4657f1e6c94dab6a365.tar.gz openembedded-core-663564d14b09073765e2c4657f1e6c94dab6a365.tar.bz2 openembedded-core-663564d14b09073765e2c4657f1e6c94dab6a365.zip |
taglib: add missing dependency on zlib
* without target zlib it tries to use native one:
| /OE/sysroots/x86_64-linux/usr/lib/libz.so: could not read symbols: File in wrong format
| collect2: error: ld returned 1 exit status
| make[2]: *** [taglib/libtag.so.1.12.0] Error 1
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/recipes-support/taglib/taglib_1.8.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-support/taglib/taglib_1.8.bb b/meta/recipes-support/taglib/taglib_1.8.bb index 76d2e519d5..4c151b7c2f 100644 --- a/meta/recipes-support/taglib/taglib_1.8.bb +++ b/meta/recipes-support/taglib/taglib_1.8.bb @@ -6,6 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING.LGPL;md5=4fbd65380cdd255951079008b364516c \ file://COPYING.MPL;md5=bfe1f75d606912a4111c90743d6c7325 \ file://taglib/audioproperties.h;beginline=1;endline=24;md5=9df2c7399519b7310568a7c55042ecee" +DEPENDS = "zlib" + PR = "r1" # http://developer.kde.org/~wheeler/files/src/taglib-${PV}.tar.gz SRC_URI = "https://github.com/downloads/taglib/taglib/taglib-1.8.tar.gz \ |