8e5f7f1cfc
Among other fixes, switching to the current stable version plugs a few memory leaks; solves many WebSocket bugs; makes NTLM authentication work; allows building gobject-introspection data when cross-building (to be enabled in a separate patch); fixes message cancellation; adds support for HTTP 308 permanent redirects, same-site cookies, secure cookies, HSTS, and Brotli compression. This also removes the unneeded LIBSOUP_CONF_ENV which defined an autoconf variable, and updates the Meson build configuration options to follow the changes done by upstream. Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> [yann.morin.1998@free.fr: - reorder options and move them one per line - while at it, do the same for dependencies ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# libsoup
|
|
#
|
|
################################################################################
|
|
|
|
LIBSOUP_VERSION_MAJOR = 2.72
|
|
LIBSOUP_VERSION = $(LIBSOUP_VERSION_MAJOR).0
|
|
LIBSOUP_SOURCE = libsoup-$(LIBSOUP_VERSION).tar.xz
|
|
LIBSOUP_SITE = http://ftp.gnome.org/pub/gnome/sources/libsoup/$(LIBSOUP_VERSION_MAJOR)
|
|
LIBSOUP_LICENSE = LGPL-2.0+
|
|
LIBSOUP_LICENSE_FILES = COPYING
|
|
LIBSOUP_CPE_ID_VENDOR = gnome
|
|
LIBSOUP_INSTALL_STAGING = YES
|
|
LIBSOUP_DEPENDENCIES = \
|
|
host-intltool \
|
|
host-libglib2 \
|
|
host-pkgconf \
|
|
libglib2 \
|
|
libpsl \
|
|
libxml2 \
|
|
sqlite
|
|
|
|
LIBSOUP_CONF_OPTS = \
|
|
-Dgssapi=disabled \
|
|
-Dgtk_doc=false \
|
|
-Dntlm=disabled \
|
|
-Dsysprof=disabled \
|
|
-Dtests=false \
|
|
-Dvapi=disabled
|
|
|
|
ifeq ($(BR2_PACKAGE_BROTLI),y)
|
|
LIBSOUP_CONF_OPTS += -Dbrotli=enabled
|
|
LIBSOUP_DEPENDENCIES += brotli
|
|
else
|
|
LIBSOUP_CONF_OPTS += -Dbrotli=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
LIBSOUP_CONF_OPTS += -Dintrospection=enabled
|
|
LIBSOUP_DEPENDENCIES += gobject-introspection
|
|
else
|
|
LIBSOUP_CONF_OPTS += -Dintrospection=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSOUP_GNOME),y)
|
|
LIBSOUP_CONF_OPTS += -Dgnome=true
|
|
else
|
|
LIBSOUP_CONF_OPTS += -Dgnome=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSOUP_SSL),y)
|
|
LIBSOUP_DEPENDENCIES += glib-networking
|
|
else
|
|
LIBSOUP_CONF_OPTS += -Dtls_check=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|