d49cec2a2d
Support for OpenSSL was added in version 0.1.15: https://lists.freedesktop.org/archives/nice/2018-December/001443.html With the option of using OpenSSL as a crypto provider, we can't keep GnuTLS as the default, because using: select BR2_PACKAGE_GNUTLS if !BR2_PACKAGE_OPENSSL causes a Kconfig circular dependency: package/openssl/Config.in:4:error: recursive dependency detected! package/openssl/Config.in:4: symbol BR2_PACKAGE_OPENSSL is selected by BR2_PACKAGE_GNUTLS package/gnutls/Config.in:1: symbol BR2_PACKAGE_GNUTLS is selected by BR2_PACKAGE_OPENSSL Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Thomas: pass --with-crypto-library argument] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
805 B
Plaintext
24 lines
805 B
Plaintext
config BR2_PACKAGE_LIBNICE
|
|
bool "libnice"
|
|
depends on !BR2_STATIC_LIBS # gnutls
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_GNUTLS
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
help
|
|
Libnice is an implementation of the IETF's Interactive
|
|
Connectivity Establishment (ICE) standard (RFC 5245) and the
|
|
Session Traversal Utilities for NAT (STUN) standard (RFC
|
|
5389).
|
|
|
|
It provides a GLib-based library, libnice and a Glib-free
|
|
library, libstun as well as GStreamer elements.
|
|
|
|
http://nice.freedesktop.org/wiki/
|
|
|
|
comment "libnice needs a toolchain w/ wchar, threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS
|