bcaed85304
- Update indentation in hash file (two spaces) - Update hash of COPYING: - files added and year updated with01f0d1ea1e
37a9b56c05
d54ceb37ce
- files removed with847e682f8d
- libmmd is a mandatory dependency since version 0.11 and847e682f8d
https://lists.freedesktop.org/archives/libbsd/2021-February/000298.html https://lists.freedesktop.org/archives/libbsd/2021-February/000302.html https://lists.freedesktop.org/archives/libbsd/2021-February/000305.html Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
30 lines
930 B
Plaintext
30 lines
930 B
Plaintext
config BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
|
bool
|
|
default y
|
|
# libbsd does not support those architectures (see src/local-elf.h)
|
|
depends on !BR2_microblaze
|
|
depends on !BR2_arc
|
|
depends on !BR2_xtensa
|
|
depends on !BR2_nds32
|
|
|
|
config BR2_PACKAGE_LIBBSD
|
|
bool "libbsd"
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_LIBMD
|
|
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/
|
|
|
|
comment "libbsd needs a toolchain w/ dynamic library, threads, wchar"
|
|
depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_USE_WCHAR
|