8be6732792
With the upcoming removal of gstreamer 0.10, the logic for building libnice with support for it must go as well. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
33 lines
921 B
Makefile
33 lines
921 B
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
|
|
LIBNICE_CONF_OPTS = --without-gstreamer-0.10
|
|
|
|
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_GST1_PLUGINS_BASE),y)
|
|
LIBNICE_CONF_OPTS += --with-gstreamer
|
|
LIBNICE_DEPENDENCIES += gst1-plugins-base
|
|
else
|
|
LIBNICE_CONF_OPTS += --without-gstreamer
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|