1config BR2_PACKAGE_XERCES 2 bool "xerces-c++" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on !BR2_STATIC_LIBS 5 depends on BR2_USE_WCHAR 6 help 7 Xerces-C++ is a validating XML parser written in portable C++. 8 9 http://xerces.apache.org/xerces-c/ 10 11if BR2_PACKAGE_XERCES 12 13config BR2_PACKAGE_XERCES_ENABLE_NETWORK 14 bool "Enable network support" 15 default y 16 help 17 Enable network support in xerces 18 19endif 20 21comment "xerces-c++ needs a toolchain w/ C++, dynamic library, wchar" 22 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \ 23 !BR2_USE_WCHAR 24