Config.in 794 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_XML_SECURITY_C
  2. bool "xml-security-c"
  3. depends on BR2_INSTALL_LIBSTDCPP # xerces
  4. depends on !BR2_STATIC_LIBS # xerces
  5. depends on BR2_USE_WCHAR # xerces
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
  7. depends on BR2_TOOLCHAIN_HAS_THREADS
  8. select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
  9. select BR2_PACKAGE_OPENSSL
  10. select BR2_PACKAGE_XERCES
  11. help
  12. The xml-security-c library is a C++ implementation of
  13. the XML Digital Signature and Encryption specifications.
  14. https://santuario.apache.org/cindex.html
  15. comment "xml-security-c needs a toolchain w/ C++, wchar, dynamic library, threads, gcc >= 4.7"
  16. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  17. BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
  18. !BR2_TOOLCHAIN_HAS_THREADS