diff options
author | Armin Kuster <akuster808@gmail.com> | 2016-02-25 16:55:09 -0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-03-02 00:03:18 +0100 |
commit | 87b9efff79e62f569525e4760adc594d0d9ac476 (patch) | |
tree | 88b1e6f2fadec458087e9260b0e5059483088c7e /meta-oe/recipes-devtools/xerces-c | |
parent | 9d18babf72c6cbc45123940a365486bf94c0f728 (diff) | |
download | meta-openembedded-87b9efff79e62f569525e4760adc594d0d9ac476.tar.gz |
xerces-c: Package update, QA fix and CVE-2016-0729
includes;
CVE-2016-0729: Apache Xerces-C XML Parser Crashes on Malformed Input
Also fixes;
ERROR: xerces-c-3.1.3-r0 do_populate_sysroot: QA Issue: xerces-c.pc failed sanity test (tmpdir) in path /home/akuster/oss/maint/mylayers/poky/build/tmp/work/armv5e-poky-linux-gnueabi/xerces-c/3.1.3-r0/sysroot-destdir/usr/lib/pkgconfig [pkgconfig]
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/xerces-c')
-rw-r--r-- | meta-oe/recipes-devtools/xerces-c/xerces-c_3.1.3.bb (renamed from meta-oe/recipes-devtools/xerces-c/xerces-c_3.1.2.bb) | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/meta-oe/recipes-devtools/xerces-c/xerces-c_3.1.2.bb b/meta-oe/recipes-devtools/xerces-c/xerces-c_3.1.3.bb index 6e870ddda..2355c9dfc 100644 --- a/meta-oe/recipes-devtools/xerces-c/xerces-c_3.1.2.bb +++ b/meta-oe/recipes-devtools/xerces-c/xerces-c_3.1.3.bb | |||
@@ -10,14 +10,19 @@ LICENSE = "Apache-2.0" | |||
10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" |
11 | 11 | ||
12 | SRC_URI = "http://apache.lauf-forum.at/xerces/c/3/sources/${BP}.tar.bz2" | 12 | SRC_URI = "http://apache.lauf-forum.at/xerces/c/3/sources/${BP}.tar.bz2" |
13 | SRC_URI[md5sum] = "d987b8bb576aea456e92454781fe3615" | 13 | SRC_URI[md5sum] = "5e333b55cb43e6b025ddf0e5d0f0fb0d" |
14 | SRC_URI[sha256sum] = "95d8655c4c50668ad60d555b59da9f31937b2c53638aa8d5768cb169f192d5e1" | 14 | SRC_URI[sha256sum] = "fc5e5e0247b108b8d64d75aeb124cabdee9b7fcd725a89fe2242b4637b25c1fa" |
15 | 15 | ||
16 | inherit autotools | 16 | inherit autotools |
17 | 17 | ||
18 | PACKAGECONFIG ??= "curl icu" | 18 | PACKAGECONFIG ??= "curl icu" |
19 | PACKAGECONFIG[curl] = "--with-curl=${STAGING_DIR},--with-curl=no,curl" | 19 | PACKAGECONFIG[curl] = "--with-curl=${STAGING_DIR},--with-curl=no,curl" |
20 | PACKAGECONFIG[icu] = "--with-icu=${STAGING_DIR},--with-icu=no,icu" | 20 | PACKAGECONFIG[icu] = "--with-icu=${STAGING_DIR},--with-icu=no,icu" |
21 | |||
22 | do_install_prepend () { | ||
23 | sed -i -e 's:-L${STAGING_DIR}/lib:-L\$\{libdir\}:g' ${B}/xerces-c.pc | ||
24 | } | ||
25 | |||
21 | PACKAGES = "libxerces-c \ | 26 | PACKAGES = "libxerces-c \ |
22 | libxerces-c-dbg \ | 27 | libxerces-c-dbg \ |
23 | libxerces-c-dev \ | 28 | libxerces-c-dev \ |
@@ -39,6 +44,3 @@ FILES_xerces-c-samples-dbg = "${bindir}/.debug/" | |||
39 | FILES_libxerces-c-staticdev = "${libdir}/lib*.a" | 44 | FILES_libxerces-c-staticdev = "${libdir}/lib*.a" |
40 | 45 | ||
41 | BBCLASSEXTEND = "native" | 46 | BBCLASSEXTEND = "native" |
42 | |||
43 | # http://errors.yoctoproject.org/Errors/Details/35144/ | ||
44 | PNBLACKLIST[xerces-c] ?= "BROKEN: QA Issue: xerces-c.pc failed sanity test (tmpdir)" | ||