Config.in 752 B

12345678910111213141516171819
  1. config BR2_PACKAGE_LIBBSD
  2. bool "libbsd"
  3. # libbsd requires a.out.h, which is only available for those
  4. # architectures: arm, m68k, x86 (and alpha, but we don't care.)
  5. depends on ( BR2_i386 || BR2_x86_64 )
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. depends on BR2_TOOLCHAIN_USES_GLIBC
  8. help
  9. This library provides useful functions commonly found on BSD
  10. systems, and lacking on others like GNU systems, thus making
  11. it easier to port projects with strong BSD origins, without
  12. needing to embed the same code over and over again on each
  13. project.
  14. http://libbsd.freedesktop.org/
  15. comment "libbsd needs an (e)glibc toolchain w/ threads"
  16. depends on ( BR2_i386 || BR2_x86_64 )
  17. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_USES_GLIBC