kumquat-buildroot/package/xerces/Config.in
Fabrice Fontaine 62cab10135 package/xerces: needs dynamic library
Disable xerces on toolchains without dynamic library to avoid a static
build failure raised since the addition of xml-security-c in commit
bbda38afbb because xerces-c.pc does not
contain icu or iconv dependencies in Libs.Private

Fixes:
 - http://autobuild.buildroot.org/results/3e4f31eb017878d3417742cbc83e16bc848db98e

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2021-08-01 00:02:50 +02:00

24 lines
548 B
Plaintext

config BR2_PACKAGE_XERCES
bool "xerces-c++"
depends on BR2_INSTALL_LIBSTDCPP
depends on !BR2_STATIC_LIBS
depends on BR2_USE_WCHAR
help
Xerces-C++ is a validating XML parser written in portable C++.
http://xerces.apache.org/xerces-c/
if BR2_PACKAGE_XERCES
config BR2_PACKAGE_XERCES_ENABLE_NETWORK
bool "Enable network support"
default y
help
Enable network support in xerces
endif
comment "xerces-c++ needs a toolchain w/ C++, dynamic library, wchar"
depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
!BR2_USE_WCHAR