97759dbc26
HTTP-related modules are enabled by default and depend on openssl since
5b4103a125
Fixes:
- http://autobuild.buildroot.org/results/95b6c489fed07d6fe626200ea057c83756d54deb
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
38 lines
928 B
Makefile
38 lines
928 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 += \
|
|
--enable-nth \
|
|
--with-openssl=pkg-config
|
|
SOFIA_SIP_DEPENDENCIES += openssl
|
|
else
|
|
SOFIA_SIP_CONF_OPTS += \
|
|
--disable-nth \
|
|
--without-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_ENABLE_DEBUG),y)
|
|
SOFIA_SIP_CONF_OPTS += --enable-ndebug
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|