Config.in 999 B

1234567891011121314151617181920212223242526272829303132
  1. config 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. http://www.mozilla.org/projects/security/pki/nss/
  16. if BR2_PACKAGE_LIBNSS
  17. config BR2_PACKAGE_LIBNSS_ARCH
  18. string
  19. default "aarch64" if BR2_aarch64_be
  20. default "ppc" if BR2_powerpc
  21. default "ppc64" if BR2_powerpc64
  22. default "ppc64le" if BR2_powerpc64le
  23. default BR2_ARCH
  24. endif
  25. comment "libnss needs a toolchain w/ threads, dynamic library"
  26. depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT
  27. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS