Config.in 644 B

1234567891011121314151617
  1. config 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. https://github.com/etr/libhttpserver
  13. comment "libhttpserver needs a toolchain w/ C++, threads, gcc >= 5"
  14. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
  15. !BR2_TOOLCHAIN_GCC_AT_LEAST_5