update buildroot to 2017.02.11
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
XMLString: Don't call catString if relativePath is null
|
||||
|
||||
https://xerces.apache.org/xerces-c/secadv/CVE-2017-12627.txt
|
||||
|
||||
Upstream status: svn revision 1819998
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
|
||||
--- trunk/src/xercesc/util/PlatformUtils.cpp 2018/01/03 18:58:30 1819997
|
||||
+++ trunk/src/xercesc/util/PlatformUtils.cpp 2018/01/03 18:59:30 1819998
|
||||
@@ -920,7 +920,10 @@
|
||||
|
||||
XMLString::subString(tmpBuf, basePath, 0, (basePtr - basePath + 1), manager);
|
||||
tmpBuf[basePtr - basePath + 1] = 0;
|
||||
- XMLString::catString(tmpBuf, relativePath);
|
||||
+ if (relativePath)
|
||||
+ {
|
||||
+ XMLString::catString(tmpBuf, relativePath);
|
||||
+ }
|
||||
|
||||
removeDotSlash(tmpBuf, manager);
|
||||
|
||||
10
bsp/buildroot-2017.02.11/package/xerces/Config.in
Normal file
10
bsp/buildroot-2017.02.11/package/xerces/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_XERCES
|
||||
bool "xerces-c++"
|
||||
depends on BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR
|
||||
help
|
||||
Xerces-C++ is a validating XML parser written in portable C++.
|
||||
|
||||
http://xml.apache.org/xerces-c/
|
||||
|
||||
comment "xerces-c++ needs a toolchain w/ C++, wchar"
|
||||
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)
|
||||
2
bsp/buildroot-2017.02.11/package/xerces/xerces.hash
Normal file
2
bsp/buildroot-2017.02.11/package/xerces/xerces.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From http://www.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.4.tar.xz.sha256
|
||||
sha256 9973cc79481803f8b6652c52faf5195d963f50d209d4f681ec97e2aa014b6241 xerces-c-3.1.4.tar.xz
|
||||
42
bsp/buildroot-2017.02.11/package/xerces/xerces.mk
Normal file
42
bsp/buildroot-2017.02.11/package/xerces/xerces.mk
Normal file
@@ -0,0 +1,42 @@
|
||||
################################################################################
|
||||
#
|
||||
# xerces
|
||||
#
|
||||
################################################################################
|
||||
|
||||
XERCES_VERSION = 3.1.4
|
||||
XERCES_SOURCE = xerces-c-$(XERCES_VERSION).tar.xz
|
||||
XERCES_SITE = http://archive.apache.org/dist/xerces/c/3/sources
|
||||
XERCES_LICENSE = Apache-2.0
|
||||
XERCES_LICENSE_FILES = LICENSE
|
||||
XERCES_INSTALL_STAGING = YES
|
||||
XERCES_CONF_OPTS = \
|
||||
--disable-threads \
|
||||
--with-gnu-ld
|
||||
|
||||
define XERCES_DISABLE_SAMPLES
|
||||
$(SED) 's/ samples//' $(@D)/Makefile.in
|
||||
endef
|
||||
|
||||
XERCES_POST_PATCH_HOOKS += XERCES_DISABLE_SAMPLES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ICU),y)
|
||||
XERCES_CONF_OPTS += --with-icu=$(STAGING_DIR)/usr
|
||||
XERCES_DEPENDENCIES += icu
|
||||
else
|
||||
XERCES_CONF_OPTS += --without-icu
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
||||
XERCES_CONF_ENV += LIBS=-liconv
|
||||
XERCES_DEPENDENCIES += libiconv
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
||||
XERCES_CONF_OPTS += --enable-netaccessor-curl --with-curl=$(STAGING_DIR)/usr/lib
|
||||
XERCES_DEPENDENCIES += libcurl
|
||||
else
|
||||
XERCES_CONF_OPTS += --disable-network
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user