1config BR2_PACKAGE_WEBSOCKETPP 2 bool "websocketpp" 3 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 4 depends on BR2_INSTALL_LIBSTDCPP 5 help 6 WebSocket++ is a header only C++ library that implements 7 RFC6455 The WebSocket Protocol. It allows integrating 8 WebSocket client and server functionality into C++ programs. 9 It uses interchangeable network transport modules including 10 one based on C++ iostreams and one based on Boost Asio. 11 12 http://www.zaphoyd.com/websocketpp 13 14comment "websocketpp needs a toolchain w/ C++ and gcc >= 4.8" 15 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 16