1config BR2_PACKAGE_LIBNICE 2 bool "libnice" 3 depends on !BR2_STATIC_LIBS # gnutls 4 depends on BR2_USE_WCHAR # libglib2 5 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 6 depends on BR2_USE_MMU # fork() 7 select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_GNUTLS 8 select BR2_PACKAGE_LIBGLIB2 9 help 10 Libnice is an implementation of the IETF's Interactive 11 Connectivity Establishment (ICE) standard (RFC 5245) and the 12 Session Traversal Utilities for NAT (STUN) standard (RFC 13 5389). 14 15 It provides a GLib-based library, libnice and a Glib-free 16 library, libstun as well as GStreamer elements. 17 18 http://nice.freedesktop.org/wiki/ 19 20comment "libnice needs a toolchain w/ wchar, threads, dynamic library" 21 depends on BR2_USE_MMU 22 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 23 BR2_STATIC_LIBS 24