mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
libnspr: Add dependency on !BR2_xtensa and !BR2_bfin
Xtensa is not yet supported in libnspr. Also add dependencies to libnss, which requires libnspr, and ecryptfs-utils, which requires libnss. Fixes (xtensa) http://autobuild.buildroot.net/results/14b/14ba6426edbffa100de924aa69157b3f59368ff2/ Fixes (blackfin) http://autobuild.buildroot.net/results/dd3/dd353703ed94cec48cd126d80cd2f1b039811be4/ [baruch: fix summary, add autobuild reference, add comment dependency, add blackfin] Signed-off-by: Chris Zankel <chris@zankel.net> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
a88dceb951
commit
354cab0ee8
@ -6,7 +6,7 @@ config BR2_PACKAGE_ECRYPTFS_UTILS
|
|||||||
depends on !BR2_avr32 && !BR2_microblaze # keyutils
|
depends on !BR2_avr32 && !BR2_microblaze # keyutils
|
||||||
depends on BR2_LARGEFILE # libnss
|
depends on BR2_LARGEFILE # libnss
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libnss -> libnspr
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libnss -> libnspr
|
||||||
depends on !BR2_arc # libnss -> libnspr
|
depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT # libnss -> libnspr
|
||||||
help
|
help
|
||||||
eCryptfs is a POSIX-compliant enterprise cryptographic
|
eCryptfs is a POSIX-compliant enterprise cryptographic
|
||||||
filesystem for Linux. It is stacked on top of any other
|
filesystem for Linux. It is stacked on top of any other
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
|
config BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT
|
||||||
|
def_bool y
|
||||||
|
depends on !BR2_arc && !BR2_xtensa && !BR2_bfin
|
||||||
|
|
||||||
config BR2_PACKAGE_LIBNSPR
|
config BR2_PACKAGE_LIBNSPR
|
||||||
bool "libnspr"
|
bool "libnspr"
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
depends on !BR2_arc
|
depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT
|
||||||
help
|
help
|
||||||
NSPR is the Netscape Portable Runtime library which provides
|
NSPR is the Netscape Portable Runtime library which provides
|
||||||
a platform-neutral API for system level and libc like
|
a platform-neutral API for system level and libc like
|
||||||
@ -12,5 +16,5 @@ config BR2_PACKAGE_LIBNSPR
|
|||||||
http://www.mozilla.org/projects/nspr/
|
http://www.mozilla.org/projects/nspr/
|
||||||
|
|
||||||
comment "libnspr needs a toolchain w/ largefile, threads"
|
comment "libnspr needs a toolchain w/ largefile, threads"
|
||||||
depends on !BR2_arc
|
depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT
|
||||||
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|
||||||
|
@ -5,7 +5,7 @@ config BR2_PACKAGE_LIBNSS
|
|||||||
select BR2_PACKAGE_ZLIB
|
select BR2_PACKAGE_ZLIB
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libnspr
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libnspr
|
||||||
depends on !BR2_arc # libnspr
|
depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT # libnspr
|
||||||
help
|
help
|
||||||
Network Security Services (NSS) is a set of libraries designed
|
Network Security Services (NSS) is a set of libraries designed
|
||||||
to support development of security-enabled client and server
|
to support development of security-enabled client and server
|
||||||
@ -16,6 +16,6 @@ config BR2_PACKAGE_LIBNSS
|
|||||||
http://www.mozilla.org/projects/security/pki/nss/
|
http://www.mozilla.org/projects/security/pki/nss/
|
||||||
|
|
||||||
comment "libnss needs a toolchain w/ largefile, threads"
|
comment "libnss needs a toolchain w/ largefile, threads"
|
||||||
depends on !BR2_arc
|
depends on BR2_PACKAGE_LIBNSPR_ARCH_SUPPORT
|
||||||
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user