2019-09-24 14:27:54 +02:00
|
|
|
config BR2_PACKAGE_LIBHTTPSERVER
|
|
|
|
bool "libhttpserver"
|
2020-06-13 21:57:30 +02:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++11 PR59526
|
2019-09-24 14:27:54 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
select BR2_PACKAGE_LIBMICROHTTPD
|
|
|
|
help
|
|
|
|
libhttpserver is a C++ library for building high performance
|
|
|
|
RESTfuls web servers. libhttpserver is built upon
|
|
|
|
libmicrohttpd to provide a simple API for developers to
|
|
|
|
create HTTP services in C++.
|
|
|
|
|
|
|
|
https://github.com/etr/libhttpserver
|
|
|
|
|
2020-06-13 21:57:30 +02:00
|
|
|
comment "libhttpserver needs a toolchain w/ C++, threads, gcc >= 5"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|