db72d16ca1
For release notes, see: https://github.com/pistacheio/pistache/releases Removed patches which are included in this release. Rapidjson was converted into an optional dependency: https://github.com/pistacheio/pistache/commit/52abf5a86b21d574df471fa1a05f2e6d22c7fbff Removed configure option PISTACHE_ENABLE_NETWORK_TESTS: https://github.com/pistacheio/pistache/commit/7d71e3b99fbe515f1854aeb039d2964507f03125 This commit also updates the _SITE and package homepage URL. The old URL: https://github.com/oktal/pistache now redirects to: https://github.com/pistacheio/pistache Signed-off-by: Bernd Kuhls <bernd@kuhls.net> [Julien: - update _SITE and homepage - add link to release notes ] Signed-off-by: Julien Olivain <ju.o@free.fr>
19 lines
622 B
Plaintext
19 lines
622 B
Plaintext
config BR2_PACKAGE_PISTACHE
|
|
bool "pistache"
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17, std::optional
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
help
|
|
Pistache is a modern and elegant HTTP and REST framework
|
|
for C++. It is entirely written in pure C++17 and provides
|
|
a clear and pleasant API.
|
|
|
|
https://github.com/pistacheio/pistache
|
|
|
|
comment "pistache needs a toolchain w/ C++, gcc >= 7, NPTL, wchar"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
|
|
!BR2_USE_WCHAR
|