35 lines
940 B
Makefile
35 lines
940 B
Makefile
################################################################################
|
|
#
|
|
# libsrtp
|
|
#
|
|
################################################################################
|
|
|
|
LIBSRTP_VERSION = 2.4.2
|
|
LIBSRTP_SITE = $(call github,cisco,libsrtp,v$(LIBSRTP_VERSION))
|
|
LIBSRTP_INSTALL_STAGING = YES
|
|
LIBSRTP_LICENSE = BSD-3-Clause
|
|
LIBSRTP_LICENSE_FILES = LICENSE
|
|
LIBSRTP_CPE_ID_VENDOR = cisco
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
LIBSRTP_MAKE_OPTS = libsrtp2.a
|
|
else ifeq ($(BR2_SHARED_LIBS),y)
|
|
LIBSRTP_MAKE_OPTS = shared_library
|
|
else
|
|
LIBSRTP_MAKE_OPTS = libsrtp2.a shared_library
|
|
endif
|
|
|
|
LIBSRTP_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LIBSRTP_DEPENDENCIES += openssl
|
|
LIBSRTP_CONF_OPTS += --disable-nss --enable-openssl
|
|
else ifeq ($(BR2_PACKAGE_LIBNSS),y)
|
|
LIBSRTP_DEPENDENCIES += libnss
|
|
LIBSRTP_CONF_OPTS += --enable-nss --disable-openssl
|
|
else
|
|
LIBSRTP_CONF_OPTS += --disable-nss --disable-openssl
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|