1config BR2_PACKAGE_NANOMSG 2 bool "nanomsg" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 help 5 nanomsg is a socket library that provides several common 6 communication patterns. It aims to make the networking layer 7 fast, scalable, and easy to use. Implemented in C, it works 8 on a wide range of operating systems with no further 9 dependencies. 10 11 http://nanomsg.org/ 12 13if BR2_PACKAGE_NANOMSG 14 15config BR2_PACKAGE_NANOMSG_TOOLS 16 bool "Build nanomsg tools" 17 help 18 Build nanomsg tools 19 20endif 21 22comment "nanomsg needs a toolchain w/ threads" 23 depends on !BR2_TOOLCHAIN_HAS_THREADS 24