mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-25 03:20:37 -09:00
Buildroot commitbb254e2304bumped the package to version 1.13.18 which includes upstream commit8081a1a6d0that added the unconditional usage of OpenSSL. Tested with both LibreSSL and OpenSSL, the latter with all suboptions disabled. Fixes: https://autobuild.buildroot.net/results/afe/afe7b327f12db86e4dc31ecc25b576bff5c4a0bb/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
29 lines
836 B
Makefile
29 lines
836 B
Makefile
################################################################################
|
|
#
|
|
# sofia-sip
|
|
#
|
|
################################################################################
|
|
|
|
SOFIA_SIP_VERSION = 1.13.18
|
|
SOFIA_SIP_SITE = $(call github,freeswitch,sofia-sip,v$(SOFIA_SIP_VERSION))
|
|
SOFIA_SIP_INSTALL_STAGING = YES
|
|
# Fetched from github, no pre-generated configure script provided
|
|
SOFIA_SIP_AUTORECONF = YES
|
|
SOFIA_SIP_DEPENDENCIES = host-pkgconf openssl
|
|
SOFIA_SIP_LICENSE = LGPL-2.1+
|
|
SOFIA_SIP_LICENSE_FILES = COPYING COPYRIGHTS
|
|
SOFIA_SIP_CPE_ID_VENDOR = signalwire
|
|
SOFIA_SIP_CONF_OPTS = \
|
|
--with-doxygen=no \
|
|
--enable-nth \
|
|
--with-openssl=pkg-config
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
|
SOFIA_SIP_CONF_OPTS += --with-glib
|
|
SOFIA_SIP_DEPENDENCIES += libglib2
|
|
else
|
|
SOFIA_SIP_CONF_OPTS += --without-glib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|