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