mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 13:43:52 -09:00
See the release notes:
- https://github.com/yhirose/cpp-httplib/releases/tag/v0.38.0
- https://github.com/yhirose/cpp-httplib/releases/tag/v0.39.0
- https://github.com/yhirose/cpp-httplib/releases/tag/v0.40.0
Fixes the following vulnerabilities:
- CVE-2026-33745
- CVE-2026-34441
Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 774a09423e)
[thomas: mention security bump]
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# cpp-httplib
|
|
#
|
|
################################################################################
|
|
|
|
CPP_HTTPLIB_VERSION = 0.40.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 = \
|
|
-Dtest=false
|
|
|
|
ifeq ($(BR2_PACKAGE_CPP_HTTPLIB_COMPILE),y)
|
|
CPP_HTTPLIB_CONF_OPTS += -Dcompile=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 += -Dopenssl=enabled
|
|
CPP_HTTPLIB_DEPENDENCIES += openssl
|
|
else
|
|
CPP_HTTPLIB_CONF_OPTS += -Dopenssl=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
CPP_HTTPLIB_CONF_OPTS += -Dzlib=enabled
|
|
CPP_HTTPLIB_DEPENDENCIES += zlib
|
|
else
|
|
CPP_HTTPLIB_CONF_OPTS += -Dzlib=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BROTLI),y)
|
|
CPP_HTTPLIB_CONF_OPTS += -Dbrotli=enabled
|
|
CPP_HTTPLIB_DEPENDENCIES += brotli
|
|
else
|
|
CPP_HTTPLIB_CONF_OPTS += -Dbrotli=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|