mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
While there is only one CVE number assigned (CVE-2025-14523) for one of
the patches included in this release, the bulk of the the changes are
security fixes.
Release notes may be found at:
25eac15300
Fixes:
https://www.cve.org/CVERecord?id=CVE-2025-14523
Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# libsoup3
|
|
#
|
|
################################################################################
|
|
|
|
LIBSOUP3_VERSION_MAJOR = 3.6
|
|
LIBSOUP3_VERSION = $(LIBSOUP3_VERSION_MAJOR).6
|
|
LIBSOUP3_SOURCE = libsoup-$(LIBSOUP3_VERSION).tar.xz
|
|
LIBSOUP3_SITE = https://download.gnome.org/sources/libsoup/$(LIBSOUP3_VERSION_MAJOR)
|
|
LIBSOUP3_LICENSE = LGPL-2.0+
|
|
LIBSOUP3_LICENSE_FILES = COPYING
|
|
LIBSOUP3_CPE_ID_VENDOR = gnome
|
|
LIBSOUP3_INSTALL_STAGING = YES
|
|
LIBSOUP3_DEPENDENCIES = \
|
|
host-intltool \
|
|
host-libglib2 \
|
|
host-pkgconf \
|
|
libglib2 \
|
|
libpsl \
|
|
nghttp2 \
|
|
sqlite \
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
|
|
LIBSOUP3_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
|
|
|
|
LIBSOUP3_CONF_OPTS = \
|
|
-Dntlm=disabled \
|
|
-Dsysprof=disabled \
|
|
-Dtests=false \
|
|
-Dtls_check=false
|
|
|
|
ifeq ($(BR2_PACKAGE_BROTLI),y)
|
|
LIBSOUP3_CONF_OPTS += -Dbrotli=enabled
|
|
LIBSOUP3_DEPENDENCIES += brotli
|
|
else
|
|
LIBSOUP3_CONF_OPTS += -Dbrotli=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
LIBSOUP3_CONF_OPTS += -Dintrospection=enabled -Dvapi=enabled
|
|
LIBSOUP3_DEPENDENCIES += host-vala gobject-introspection
|
|
else
|
|
LIBSOUP3_CONF_OPTS += -Dintrospection=disabled -Dvapi=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBKRB5),y)
|
|
LIBSOUP3_CONF_OPTS += -Dgssapi=enabled
|
|
LIBSOUP3_DEPENDENCIES += libkrb5
|
|
else
|
|
LIBSOUP3_CONF_OPTS += -Dgssapi=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|