1config BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT 2 def_bool y 3 4if BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT 5 6config BR2_PACKAGE_LIBNSPR 7 bool "libnspr" 8 depends on BR2_TOOLCHAIN_HAS_THREADS 9 depends on !BR2_STATIC_LIBS 10 help 11 NSPR is the Netscape Portable Runtime library which provides 12 a platform-neutral API for system level and libc like 13 functions. The library is used by the Mozilla project as well 14 as others. 15 16 http://www.mozilla.org/projects/nspr/ 17 18comment "libnspr needs a toolchain w/ threads, dynamic library" 19 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 20 21endif 22