2013-05-09 14:22:55 +02:00
|
|
|
config BR2_PACKAGE_LIBBSD
|
|
|
|
bool "libbsd"
|
2013-06-05 23:07:55 +02:00
|
|
|
# libbsd requires a.out.h, which is only available for those
|
|
|
|
# architectures: arm, m68k, x86 (and alpha, but we don't care.)
|
2013-08-20 00:35:33 +02:00
|
|
|
depends on ( BR2_i386 || BR2_x86_64 )
|
2013-06-27 15:53:17 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2013-05-09 14:22:55 +02:00
|
|
|
help
|
|
|
|
This library provides useful functions commonly found on BSD
|
|
|
|
systems, and lacking on others like GNU systems, thus making
|
|
|
|
it easier to port projects with strong BSD origins, without
|
|
|
|
needing to embed the same code over and over again on each
|
|
|
|
project.
|
|
|
|
|
|
|
|
http://libbsd.freedesktop.org/
|
2013-06-27 15:53:17 +02:00
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "libbsd needs a toolchain w/ threads"
|
2013-08-20 00:35:33 +02:00
|
|
|
depends on ( BR2_i386 || BR2_x86_64 )
|
2013-06-27 15:53:17 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|