1config BR2_PACKAGE_GLIB_NETWORKING 2 bool "glib-networking" 3 depends on BR2_USE_WCHAR # glib2 4 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 5 depends on BR2_USE_MMU # glib2 6 depends on !BR2_STATIC_LIBS 7 select BR2_PACKAGE_LIBGLIB2 8 select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_GNUTLS 9 help 10 Network-related GIO modules for glib. 11 12 https://gitlab.gnome.org/GNOME/glib-networking 13 14comment "glib-networking needs a toolchain w/ wchar, threads, dynamic library" 15 depends on BR2_USE_MMU 16 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 17 BR2_STATIC_LIBS 18