56952e95d6
Rebased patch 0001. Added patch 0002 previously used for the sofia-sip library which was bundled with the freeswitch source: https://git.buildroot.net/buildroot/commit/package/freeswitch?id=3c2e8b2b29a88c35c8a9867537d3ce3d0af85bc2 The bundled library was removed in freeswitch-1.10.4. Switched upstream to freeswitch repo according to http://sofia-sip.sourceforge.net/ "This repository is not currently maintained. The FreeSWITCH project hosts a currently maintained version of this library at https://github.com/freeswitch/sofia-sip" Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
34 lines
878 B
Makefile
34 lines
878 B
Makefile
################################################################################
|
|
#
|
|
# sofia-sip
|
|
#
|
|
################################################################################
|
|
|
|
SOFIA_SIP_VERSION = 1.13.1-d10a3d268c
|
|
SOFIA_SIP_SITE = https://files.freeswitch.org/downloads/libs
|
|
SOFIA_SIP_INSTALL_STAGING = YES
|
|
SOFIA_SIP_DEPENDENCIES = host-pkgconf
|
|
SOFIA_SIP_LICENSE = LGPL-2.1+
|
|
SOFIA_SIP_LICENSE_FILES = COPYING COPYRIGHTS
|
|
SOFIA_SIP_CONF_OPTS = --with-doxygen=no
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
|
SOFIA_SIP_CONF_OPTS += --with-glib
|
|
SOFIA_SIP_DEPENDENCIES += libglib2
|
|
else
|
|
SOFIA_SIP_CONF_OPTS += --without-glib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
SOFIA_SIP_CONF_OPTS += --with-openssl
|
|
SOFIA_SIP_DEPENDENCIES += openssl
|
|
else
|
|
SOFIA_SIP_CONF_OPTS += --without-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_ENABLE_DEBUG),y)
|
|
SOFIA_SIP_CONF_OPTS += --enable-ndebug
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|