2016-03-05 00:32:43 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# libpjsip
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
LIBPJSIP_VERSION = 2.4.5
|
|
|
|
LIBPJSIP_SOURCE = pjproject-$(LIBPJSIP_VERSION).tar.bz2
|
|
|
|
LIBPJSIP_SITE = http://www.pjsip.org/release/$(LIBPJSIP_VERSION)
|
2016-03-09 00:06:41 +01:00
|
|
|
LIBPJSIP_DEPENDENCIES = libsrtp
|
2016-03-05 00:32:43 +01:00
|
|
|
LIBPJSIP_LICENSE = GPLv2+
|
|
|
|
LIBPJSIP_LICENSE_FILES = COPYING
|
|
|
|
LIBPJSIP_INSTALL_STAGING = YES
|
2016-05-12 14:48:13 +02:00
|
|
|
LIBPJSIP_MAKE = $(MAKE1)
|
2016-03-05 00:32:43 +01:00
|
|
|
|
|
|
|
LIBPJSIP_CONF_ENV = \
|
|
|
|
LD="$(TARGET_CC)" \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -DPJ_HAS_IPV6=1"
|
|
|
|
|
|
|
|
LIBPJSIP_CONF_OPTS = \
|
|
|
|
--disable-sound \
|
2016-03-17 13:51:11 +01:00
|
|
|
--disable-gsm-codec \
|
2016-03-05 00:32:43 +01:00
|
|
|
--disable-speex-codec \
|
|
|
|
--disable-speex-aec \
|
|
|
|
--disable-resample \
|
|
|
|
--disable-video \
|
2016-03-09 00:06:41 +01:00
|
|
|
--disable-opencore-amr \
|
2016-03-17 13:51:12 +01:00
|
|
|
--disable-g7221-codec \
|
|
|
|
--disable-ilbc-codec \
|
2016-03-09 00:06:41 +01:00
|
|
|
--with-external-srtp=$(STAGING_DIR)/usr
|
2016-03-05 00:32:43 +01:00
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
LIBPJSIP_DEPENDENCIES += openssl
|
|
|
|
LIBPJSIP_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
|
|
|
|
else
|
|
|
|
LIBPJSIP_CONF_OPTS += --disable-ssl
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
|
|
|
LIBPJSIP_DEPENDENCIES += util-linux
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|