mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
glib-networking: new package
glib-networking provides network-related GIO modules for glib. It is used by newer versions of libsoup to implement SSL/TLS support. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
4fd8bdc7da
commit
01ffa2e868
@ -344,6 +344,7 @@ source "package/jsmin/Config.in"
|
||||
endmenu
|
||||
|
||||
menu "Networking"
|
||||
source "package/glib-networking/Config.in"
|
||||
source "package/libcgi/Config.in"
|
||||
source "package/libcgicc/Config.in"
|
||||
source "package/libcurl/Config.in"
|
||||
|
11
package/glib-networking/Config.in
Normal file
11
package/glib-networking/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_GLIB_NETWORKING
|
||||
bool "glib-networking"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
||||
select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT
|
||||
help
|
||||
Network-related GIO modules for glib.
|
||||
|
||||
comment "glib-networking requires a toolchain with WCHAR support"
|
||||
depends on !BR2_USE_WCHAR
|
22
package/glib-networking/glib-networking.mk
Normal file
22
package/glib-networking/glib-networking.mk
Normal file
@ -0,0 +1,22 @@
|
||||
#############################################################
|
||||
#
|
||||
# glib-networking
|
||||
#
|
||||
#############################################################
|
||||
|
||||
GLIB_NETWORKING_MAJOR_VERSION = 2.30
|
||||
GLIB_NETWORLING_MINOR_VERSION = 2
|
||||
GLIB_NETWORKING_VERSION = $(GLIB_NETWORKING_MAJOR_VERSION).$(GLIB_NETWORLING_MINOR_VERSION)
|
||||
GLIB_NETWORKING_SITE = http://ftp.gnome.org/pub/gnome/sources/glib-networking/$(GLIB_NETWORKING_MAJOR_VERSION)
|
||||
GLIB_NETWORKING_SOURCE = glib-networking-$(GLIB_NETWORKING_VERSION).tar.xz
|
||||
|
||||
GLIB_NETWORKING_INSTALL_STAGING = YES
|
||||
|
||||
GLIB_NETWORKING_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) host-pkg-config libglib2
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
GLIB_NETWORKING_DEPENDENCIES += gnutls
|
||||
GLIB_NETWORKING_CONF_OPT = --with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
||||
endif
|
||||
|
||||
$(eval $(call AUTOTARGETS))
|
Loading…
Reference in New Issue
Block a user