Config.in 924 B

123456789101112131415161718192021222324252627
  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. # uClibc on noMMU doesn't provide __register_atfork()
  9. depends on !(BR2_TOOLCHAIN_USES_UCLIBC && !BR2_USE_MMU)
  10. config BR2_PACKAGE_LIBBSD
  11. bool "libbsd"
  12. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  13. depends on BR2_TOOLCHAIN_HAS_THREADS
  14. depends on BR2_USE_WCHAR
  15. help
  16. This library provides useful functions commonly found on BSD
  17. systems, and lacking on others like GNU systems, thus making
  18. it easier to port projects with strong BSD origins, without
  19. needing to embed the same code over and over again on each
  20. project.
  21. http://libbsd.freedesktop.org/
  22. comment "libbsd needs a toolchain w/ threads, wchar"
  23. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  24. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR