1config BR2_PACKAGE_LIBHTTPSERVER 2 bool "libhttpserver" 3 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11 PR59526 4 depends on BR2_INSTALL_LIBSTDCPP 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 select BR2_PACKAGE_LIBMICROHTTPD 7 help 8 libhttpserver is a C++ library for building high performance 9 RESTfuls web servers. libhttpserver is built upon 10 libmicrohttpd to provide a simple API for developers to 11 create HTTP services in C++. 12 13 https://github.com/etr/libhttpserver 14 15comment "libhttpserver needs a toolchain w/ C++, threads, gcc >= 5" 16 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 17 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 18