Config.in 805 B

1234567891011121314151617181920212223
  1. config 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. It provides a GLib-based library, libnice and a Glib-free
  15. library, libstun as well as GStreamer elements.
  16. http://nice.freedesktop.org/wiki/
  17. comment "libnice needs a toolchain w/ wchar, threads, dynamic library"
  18. depends on BR2_USE_MMU
  19. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  20. BR2_STATIC_LIBS