Files
buildroot/package/resiprocate/Config.in
Bernd Kuhls 79adde0180 package/resiprocate: bump version to 1.13.2
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>
2025-12-26 17:39:24 +01:00

44 lines
1.3 KiB
Plaintext

comment "resiprocate needs a toolchain w/ C++, threads, wchar"
depends on BR2_USE_MMU
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
config BR2_PACKAGE_RESIPROCATE
bool "resiprocate"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_WCHAR
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_C_ARES
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
help
reSIProcate is a framework that aims to fully implement the
SIP protocol in first class C++. It is intended for use in
other applications, such as the repro SIP proxy.
By default this package provides the core libraries: librutil
(utilities), libresip (SIP stack/RFC compliant message
parsing) and libdum (SIP Dialog Usage Manager, a state
machine for SIP dialogs).
https://github.com/resiprocate/resiprocate
if BR2_PACKAGE_RESIPROCATE
config BR2_PACKAGE_RESIPROCATE_DTLS_SUPPORT
bool "DTLS support"
select BR2_PACKAGE_OPENSSL
help
Enable DTLS support (requires OpenSSL)
config BR2_PACKAGE_RESIPROCATE_REND
bool "resiprocate-rend"
select BR2_PACKAGE_BOOST
select BR2_PACKAGE_BOOST_SYSTEM
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_POPT
help
Rend is tool that is was created specifically to load test
gtSIP based presence servers.
endif # BR2_PACKAGE_RESIPROCATE