Config.in 835 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  2. bool
  3. default y
  4. # libbsd does not support those architectures (see src/local-elf.h)
  5. depends on !BR2_microblaze
  6. depends on !BR2_arc
  7. depends on !BR2_xtensa
  8. depends on !BR2_nds32
  9. config BR2_PACKAGE_LIBBSD
  10. bool "libbsd"
  11. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  12. depends on BR2_TOOLCHAIN_HAS_THREADS
  13. depends on BR2_USE_WCHAR
  14. help
  15. This library provides useful functions commonly found on BSD
  16. systems, and lacking on others like GNU systems, thus making
  17. it easier to port projects with strong BSD origins, without
  18. needing to embed the same code over and over again on each
  19. project.
  20. http://libbsd.freedesktop.org/
  21. comment "libbsd needs a toolchain w/ threads, wchar"
  22. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  23. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR