mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-21 05:57:05 +00:00
ab85e58b91
The related CVEs are tracked with "xerces-c\+\+" (sic).
See CVE db query:
sqlite> select vendor, product, count(*) from PRODUCTs where product like '%xerces%' group by 1, 2;
apache|xerces-c\+\+|29
apache|xerces-j|2
apache|xerces2_java|3
redhat|xerces|3
Set CVE_PRODUCT accordingly.
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 29a272744a)
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
44 lines
1.5 KiB
BlitzBasic
44 lines
1.5 KiB
BlitzBasic
SUMMARY = "Xerces-c is a validating xml parser written in C++"
|
|
DESCRIPTION = "Xerces-C++ makes it easy to give your application \
|
|
the ability to read and write XML data. \
|
|
A shared library is provided for parsing, generating, \
|
|
manipulating, and validating XML documents using \
|
|
the DOM, SAX, and SAX2 APIs."
|
|
HOMEPAGE = "http://xerces.apache.org/xerces-c/"
|
|
SECTION = "libs"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
|
|
|
CVE_PRODUCT = "xerces-c\+\+"
|
|
|
|
SRC_URI = "http://archive.apache.org/dist/xerces/c/3/sources/${BP}.tar.bz2 \
|
|
file://0001-aclocal.m4-don-t-use-full-path-of-with_curl-in-xerce.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "1db4028c9b7f1f778efbf4a9462d65e13f9938f2c22f9e9994e12c49ba97e252"
|
|
|
|
inherit autotools
|
|
|
|
PACKAGECONFIG ??= "curl icu"
|
|
PACKAGECONFIG[curl] = "--with-curl=${STAGING_DIR_TARGET}${prefix},--with-curl=no,curl"
|
|
PACKAGECONFIG[icu] = "--with-icu=${STAGING_DIR_TARGET}${prefix},--with-icu=no,icu"
|
|
|
|
PACKAGES = "libxerces-c \
|
|
libxerces-c-dev \
|
|
xerces-c-samples \
|
|
libxerces-c-staticdev \
|
|
${PN}-dbg \
|
|
"
|
|
|
|
RPROVIDES:${PN}-dbg += "libxerces-c-dbg xerces-c-samples-dbg"
|
|
|
|
FILES:libxerces-c = "${libdir}/libxerces-c-3.2.so"
|
|
FILES:libxerces-c-dev = "${libdir}/lib*.la \
|
|
${libdir}/libxerces-c.so \
|
|
${libdir}/pkgconfig/xerces-c.pc \
|
|
${includedir}/xercesc \
|
|
"
|
|
FILES:xerces-c-samples = "${bindir}/*"
|
|
FILES:libxerces-c-staticdev = "${libdir}/lib*.a"
|
|
|
|
BBCLASSEXTEND = "native"
|