1config 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 15 https://santuario.apache.org/cindex.html 16 17comment "xml-security-c needs a toolchain w/ C++, wchar, dynamic library, threads, gcc >= 4.7" 18 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ 19 BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \ 20 !BR2_TOOLCHAIN_HAS_THREADS 21