Config.in 857 B

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_LIBDNET
  2. bool "libdnet"
  3. help
  4. libdnet - simplified interface to low-level networking
  5. routines.
  6. http://libdnet.sourceforge.net/
  7. if BR2_PACKAGE_LIBDNET
  8. config BR2_PACKAGE_LIBDNET_PYTHON
  9. bool "libdnet python module"
  10. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  11. depends on BR2_PACKAGE_PYTHON3
  12. depends on !BR2_STATIC_LIBS # libbsd
  13. depends on BR2_TOOLCHAIN_HAS_THREADS # libbsd
  14. depends on BR2_USE_WCHAR # libbsd
  15. select BR2_PACKAGE_LIBBSD
  16. help
  17. dnet module for python
  18. comment "dnet module for python requires python3 package"
  19. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  20. depends on !BR2_PACKAGE_PYTHON3
  21. comment "dnet module for python needs a toolchain w/ dynamic library, threads, wchar"
  22. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  23. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
  24. !BR2_USE_WCHAR
  25. endif