1config BR2_PACKAGE_LIBNSS 2 bool "libnss" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # libnspr 4 depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT # libnspr 5 depends on !BR2_STATIC_LIBS 6 select BR2_PACKAGE_LIBNSPR 7 select BR2_PACKAGE_SQLITE 8 select BR2_PACKAGE_ZLIB 9 help 10 Network Security Services (NSS) is a set of libraries designed 11 to support development of security-enabled client and server 12 applications. Applications built with NSS can support SSL v2 13 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, 14 and X.509 v3 certificates. 15 16 http://www.mozilla.org/projects/security/pki/nss/ 17 18if BR2_PACKAGE_LIBNSS 19 20config BR2_PACKAGE_LIBNSS_ARCH 21 string 22 default "aarch64" if BR2_aarch64_be 23 default "ppc" if BR2_powerpc 24 default "ppc64" if BR2_powerpc64 25 default "ppc64le" if BR2_powerpc64le 26 default BR2_ARCH 27 28endif 29 30comment "libnss needs a toolchain w/ threads, dynamic library" 31 depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT 32 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 33