30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
34 lines
906 B
Makefile
34 lines
906 B
Makefile
################################################################################
|
|
#
|
|
# sofia-sip
|
|
#
|
|
################################################################################
|
|
|
|
SOFIA_SIP_VERSION = 1.12.11
|
|
SOFIA_SIP_SITE = http://downloads.sourceforge.net/project/sofia-sip/sofia-sip/$(SOFIA_SIP_VERSION)
|
|
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))
|