Config.in 480 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_XERCES
  2. bool "xerces-c++"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_WCHAR
  5. help
  6. Xerces-C++ is a validating XML parser written in portable C++.
  7. http://xerces.apache.org/xerces-c/
  8. if BR2_PACKAGE_XERCES
  9. config BR2_PACKAGE_XERCES_ENABLE_NETWORK
  10. bool "Enable network support"
  11. default y
  12. help
  13. Enable network support in xerces
  14. endif
  15. comment "xerces-c++ needs a toolchain w/ C++, wchar"
  16. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)