1config BR2_PACKAGE_LIBNL 2 bool "libnl" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 help 5 A library for applications dealing with netlink socket. 6 7 https://github.com/thom311/libnl 8 9if BR2_PACKAGE_LIBNL 10 11config BR2_PACKAGE_LIBNL_TOOLS 12 bool "install tools" 13 # uses <dlfcn.h> 14 depends on !BR2_STATIC_LIBS 15 help 16 Install binary tools. 17 18comment "libnl tools needs a toolchain w/ dynamic library" 19 depends on BR2_STATIC_LIBS 20endif 21 22comment "libnl needs a toolchain w/ threads" 23 depends on !BR2_TOOLCHAIN_HAS_THREADS 24