12345678910111213141516171819202122232425262728293031 |
- config BR2_PACKAGE_LIBDNET
- bool "libdnet"
- help
- libdnet - simplified interface to low-level networking
- routines.
- http://libdnet.sourceforge.net/
- if BR2_PACKAGE_LIBDNET
- config BR2_PACKAGE_LIBDNET_PYTHON
- bool "libdnet python module"
- depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
- depends on BR2_PACKAGE_PYTHON3
- depends on !BR2_STATIC_LIBS # libbsd
- depends on BR2_TOOLCHAIN_HAS_THREADS # libbsd
- depends on BR2_USE_WCHAR # libbsd
- select BR2_PACKAGE_LIBBSD
- help
- dnet module for python
- comment "dnet module for python requires python3 package"
- depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
- depends on !BR2_PACKAGE_PYTHON3
- comment "dnet module for python 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
- endif
|