79ce08bbdc
Now that IPv6 is mandatory remove package dependencies and conditionals for it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> 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 = LGPLv2.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))
|