mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
Release notes: https://github.com/resiprocate/resiprocate/blob/resiprocate-1.13.2/CHANGELOG.md Switched _SITE to github, the previous URL redirects to github.com. Removed patches which are included in this release. License file was renamed and updated: https://github.com/resiprocate/resiprocate/commits/resiprocate-1.13.2/LICENSE.md Switch build system to cmake, removed apps-specific option: - sipdial is built if OpenSSL is enabled: https://github.com/resiprocate/resiprocate/blob/resiprocate-1.13.2/apps/CMakeLists.txt#L6 - clicktocall build is broken AddressTranslator.cxx: In member function 'void clicktocall::AddressTranslator:: addTranslation(const resip::Data&, const resip::Data&)': AddressTranslator.cxx:55:16: error: assignment of read-only variable 'flags' 55 | flags |= std::regex_constants::nosubs; Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
################################################################################
|
|
#
|
|
# resiprocate
|
|
#
|
|
################################################################################
|
|
|
|
RESIPROCATE_VERSION = 1.13.2
|
|
RESIPROCATE_SITE = $(call github,resiprocate,resiprocate,resiprocate-$(RESIPROCATE_VERSION))
|
|
RESIPROCATE_LICENSE = VSL-1.0, BSD-3-Clause
|
|
RESIPROCATE_LICENSE_FILES = LICENSE.md
|
|
RESIPROCATE_CPE_ID_VENDOR = resiprocate
|
|
RESIPROCATE_INSTALL_STAGING = YES
|
|
|
|
RESIPROCATE_CONF_OPTS = -DWITH_C_ARES=ON
|
|
RESIPROCATE_DEPENDENCIES = c-ares
|
|
|
|
RESIPROCATE_CONF_OPTS += \
|
|
-DBUILD_QPID_PROTON=OFF \
|
|
-DBUILD_RECON=OFF \
|
|
-DBUILD_REFLOW=OFF \
|
|
-DBUILD_REPRO=OFF \
|
|
-DBUILD_RETURN=OFF \
|
|
-DBUILD_TFM=OFF \
|
|
-DHAVE_CLOCK_GETTIME_MONOTONIC_EXITCODE=0
|
|
|
|
ifeq ($(BR2_PACKAGE_GEOIP),y)
|
|
RESIPROCATE_CONF_OPTS += -DUSE_MAXMIND_GEOIP=ON
|
|
RESIPROCATE_DEPENDENCIES += geoip
|
|
else
|
|
RESIPROCATE_CONF_OPTS += -DUSE_MAXMIND_GEOIP=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
RESIPROCATE_CONF_OPTS += -DWITH_SSL=ON
|
|
RESIPROCATE_DEPENDENCIES += openssl host-pkgconf
|
|
else
|
|
RESIPROCATE_CONF_OPTS += -DWITH_SSL=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_POPT),y)
|
|
RESIPROCATE_CONF_OPTS += -DUSE_POPT=ON
|
|
RESIPROCATE_DEPENDENCIES += popt
|
|
else
|
|
RESIPROCATE_CONF_OPTS += -DUSE_POPT=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_RESIPROCATE_DTLS_SUPPORT),y)
|
|
RESIPROCATE_CONF_OPTS += -DUSE_DTLS=ON
|
|
else
|
|
RESIPROCATE_CONF_OPTS += -DUSE_DTLS=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_RESIPROCATE_REND),y)
|
|
RESIPROCATE_CONF_OPTS += -DBUILD_REND=ON
|
|
RESIPROCATE_DEPENDENCIES += boost
|
|
else
|
|
RESIPROCATE_CONF_OPTS += -DBUILD_REND=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|