mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
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:52abf5a86bRemoved configure option PISTACHE_ENABLE_NETWORK_TESTS:7d71e3b99fThis 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>
29 lines
753 B
Makefile
29 lines
753 B
Makefile
################################################################################
|
|
#
|
|
# pistache
|
|
#
|
|
################################################################################
|
|
|
|
PISTACHE_VERSION = 0.4.26
|
|
PISTACHE_SITE = $(call github,pistacheio,pistache,v$(PISTACHE_VERSION))
|
|
PISTACHE_LICENSE = Apache-2.0
|
|
PISTACHE_LICENSE_FILES = LICENSE
|
|
|
|
PISTACHE_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_RAPIDJSON),y)
|
|
PISTACHE_DEPENDENCIES += rapidjson
|
|
PISTACHE_CONF_OPTS += -DPISTACHE_USE_RAPIDJSON=true
|
|
else
|
|
PISTACHE_CONF_OPTS += -DPISTACHE_USE_RAPIDJSON=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
PISTACHE_DEPENDENCIES += openssl
|
|
PISTACHE_CONF_OPTS += -DPISTACHE_USE_SSL=true
|
|
else
|
|
PISTACHE_CONF_OPTS += -DPISTACHE_USE_SSL=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|