diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/taglib/taglib_1.11.bb (renamed from meta/recipes-support/taglib/taglib_1.9.1.bb) | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-support/taglib/taglib_1.9.1.bb b/meta/recipes-support/taglib/taglib_1.11.bb index d125308ccd..c29bda97c4 100644 --- a/meta/recipes-support/taglib/taglib_1.9.1.bb +++ b/meta/recipes-support/taglib/taglib_1.11.bb | |||
@@ -9,8 +9,8 @@ LIC_FILES_CHKSUM = "file://COPYING.LGPL;md5=4fbd65380cdd255951079008b364516c \ | |||
9 | DEPENDS = "zlib" | 9 | DEPENDS = "zlib" |
10 | 10 | ||
11 | SRC_URI = "http://taglib.github.io/releases/${BP}.tar.gz" | 11 | SRC_URI = "http://taglib.github.io/releases/${BP}.tar.gz" |
12 | SRC_URI[md5sum] = "0d35df96822bbd564c5504cb3c2e4d86" | 12 | SRC_URI[md5sum] = "be39fa2054df40664cb557126ad7cf7c" |
13 | SRC_URI[sha256sum] = "72d371cd1419a87ae200447a53bff2be219283071e80fd12337928cc967dc71a" | 13 | SRC_URI[sha256sum] = "ed4cabb3d970ff9a30b2620071c2b054c4347f44fc63546dbe06f97980ece288" |
14 | 14 | ||
15 | UPSTREAM_CHECK_URI = "http://github.com/taglib/taglib/releases/" | 15 | UPSTREAM_CHECK_URI = "http://github.com/taglib/taglib/releases/" |
16 | 16 | ||
@@ -21,7 +21,7 @@ inherit cmake pkgconfig binconfig-disabled | |||
21 | PACKAGES =+ "${PN}-c" | 21 | PACKAGES =+ "${PN}-c" |
22 | FILES_${PN}-c = "${libdir}/libtag_c.so.*" | 22 | FILES_${PN}-c = "${libdir}/libtag_c.so.*" |
23 | 23 | ||
24 | EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib', True).replace('lib', '')}" | 24 | EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON -DLIB_SUFFIX=${@d.getVar('baselib', True).replace('lib', '')}" |
25 | 25 | ||
26 | do_configure_prepend () { | 26 | do_configure_prepend () { |
27 | rm -f ${S}/admin/ltmain.sh | 27 | rm -f ${S}/admin/ltmain.sh |
@@ -30,3 +30,6 @@ do_configure_prepend () { | |||
30 | sed -i -e "s/atomic.hpp/atomic-not-exist.hpp/" ${S}/ConfigureChecks.cmake ${S}/taglib/toolkit/trefcounter.cpp | 30 | sed -i -e "s/atomic.hpp/atomic-not-exist.hpp/" ${S}/ConfigureChecks.cmake ${S}/taglib/toolkit/trefcounter.cpp |
31 | } | 31 | } |
32 | 32 | ||
33 | # without -fPIC depending packages failed with many error like: | ||
34 | # | <...>/ld: error: <...>/usr/lib/libtag.a(modfilebase.cpp.o): requires unsupported dynamic reloc R_ARM_THM_MOVW_ABS_NC; recompile with -fPIC | ||
35 | CXXFLAGS += "-fPIC" | ||