5e32e95668
In 2.56.1 (when tested in a namespace sandbox that restricted what the build could see on the host system), it was discovered that the glib-networking build would check in /etc for the Certificate Authority files. The newer version of this package no longer tests the build time location of the Certificate Authority and resolves these build failures. Fixes: http://autobuild.buildroot.net/results/8f8/8f83be0c21c21c07d5a7330f3626b739b1970625 (and others http://autobuild.buildroot.net/?reason=glib-networking-2.56.1) Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
31 lines
1008 B
Makefile
31 lines
1008 B
Makefile
################################################################################
|
|
#
|
|
# glib-networking
|
|
#
|
|
################################################################################
|
|
|
|
GLIB_NETWORKING_VERSION_MAJOR = 2.58
|
|
GLIB_NETWORKING_VERSION = $(GLIB_NETWORKING_VERSION_MAJOR).0
|
|
GLIB_NETWORKING_SITE = http://ftp.gnome.org/pub/gnome/sources/glib-networking/$(GLIB_NETWORKING_VERSION_MAJOR)
|
|
GLIB_NETWORKING_SOURCE = glib-networking-$(GLIB_NETWORKING_VERSION).tar.xz
|
|
GLIB_NETWORKING_INSTALL_STAGING = YES
|
|
GLIB_NETWORKING_DEPENDENCIES = \
|
|
$(TARGET_NLS_DEPENDENCIES) \
|
|
host-pkgconf \
|
|
host-intltool \
|
|
libglib2 \
|
|
gnutls
|
|
|
|
GLIB_NETWORKING_CONF_OPTS = \
|
|
-Dca_certificates_path=/etc/ssl/certs/ca-certificates.crt \
|
|
-Dlibproxy_support=false \
|
|
-Dgnome_proxy_support=false \
|
|
-Dpkcs11_support=false
|
|
|
|
GLIB_NETWORKING_LICENSE = LGPL-2.0+
|
|
GLIB_NETWORKING_LICENSE_FILES = COPYING
|
|
GLIB_NETWORKING_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) \
|
|
GIO_MODULE_DIR=/usr/lib/gio/modules install
|
|
|
|
$(eval $(meson-package))
|