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