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>
39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# libnice
|
|
#
|
|
################################################################################
|
|
|
|
LIBNICE_VERSION = 0.1.16
|
|
LIBNICE_SITE = http://nice.freedesktop.org/releases
|
|
LIBNICE_LICENSE = MPL-1.1 or LGPL-2.1
|
|
LIBNICE_LICENSE_FILES = COPYING COPYING.MPL COPYING.LGPL
|
|
LIBNICE_DEPENDENCIES = libglib2 host-pkgconf
|
|
LIBNICE_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
LIBNICE_CONF_OPTS += --with-crypto-library=gnutls
|
|
LIBNICE_DEPENDENCIES += gnutls
|
|
else
|
|
LIBNICE_CONF_OPTS += \
|
|
--with-crypto-library=openssl \
|
|
--with-openssl=$(STAGING_DIR)/usr
|
|
LIBNICE_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE),y)
|
|
LIBNICE_CONF_OPTS += --with-gstreamer-0.10
|
|
LIBNICE_DEPENDENCIES += gst-plugins-base
|
|
else
|
|
LIBNICE_CONF_OPTS += --without-gstreamer-0.10
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE),y)
|
|
LIBNICE_CONF_OPTS += --with-gstreamer
|
|
LIBNICE_DEPENDENCIES += gst1-plugins-base
|
|
else
|
|
LIBNICE_CONF_OPTS += --without-gstreamer
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|