mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 16:24:17 -09:00
https://github.com/yhirose/cpp-httplib/releases/tag/v0.48.0
- this bump includes a security fix for the Mbed TLS and wolfSSL
backends which are unused by buildroot
https://github.com/yhirose/cpp-httplib/releases/tag/v0.47.0
- this bump includes a security fix for the Mbed TLS and wolfSSL
backends which are unused by buildroot
https://github.com/yhirose/cpp-httplib/releases/tag/v0.46.1
https://github.com/yhirose/cpp-httplib/releases/tag/v0.46.0
- this bump includes a security fix
https://github.com/yhirose/cpp-httplib/releases/tag/v0.45.1
https://github.com/yhirose/cpp-httplib/releases/tag/v0.45.0
https://github.com/yhirose/cpp-httplib/releases/tag/v0.44.0
- fixes CVE-2026-45372 & CVE-2026-46527
https://github.com/yhirose/cpp-httplib/releases/tag/v0.43.4
- fixes CVE-2026-45352
https://github.com/yhirose/cpp-httplib/releases/tag/v0.43.3
https://github.com/yhirose/cpp-httplib/releases/tag/v0.43.2
https://github.com/yhirose/cpp-httplib/compare/v0.43.1...v0.48.0
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 614c32d2dd)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# cpp-httplib
|
|
#
|
|
################################################################################
|
|
|
|
CPP_HTTPLIB_VERSION = 0.48.0
|
|
CPP_HTTPLIB_SITE = $(call github,yhirose,cpp-httplib,v$(CPP_HTTPLIB_VERSION))
|
|
CPP_HTTPLIB_LICENSE = MIT
|
|
CPP_HTTPLIB_LICENSE_FILES = LICENSE
|
|
CPP_HTTPLIB_CPE_ID_VENDOR = yhirose
|
|
CPP_HTTPLIB_INSTALL_STAGING = YES
|
|
CPP_HTTPLIB_CONF_OPTS = \
|
|
-Dcpp-httplib_test=false
|
|
|
|
ifeq ($(BR2_PACKAGE_CPP_HTTPLIB_COMPILE),y)
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcpp-httplib_compile=true
|
|
CPP_HTTPLIB_DEPENDENCIES += host-python3
|
|
else
|
|
# Header only library
|
|
CPP_HTTPLIB_INSTALL_TARGET = NO
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcpp-httplib_openssl=enabled
|
|
CPP_HTTPLIB_DEPENDENCIES += openssl
|
|
else
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcpp-httplib_openssl=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcpp-httplib_zlib=enabled
|
|
CPP_HTTPLIB_DEPENDENCIES += zlib
|
|
else
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcpp-httplib_zlib=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BROTLI),y)
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcpp-httplib_brotli=enabled
|
|
CPP_HTTPLIB_DEPENDENCIES += brotli
|
|
else
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcpp-httplib_brotli=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|