Files
buildroot/package/pistache/pistache.mk
Bernd Kuhls db72d16ca1 package/pistache: bump version to 0.4.26
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:
52abf5a86b

Removed configure option PISTACHE_ENABLE_NETWORK_TESTS:
7d71e3b99f

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>
2025-12-09 19:24:58 +01:00

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))