2cc6bd7482
Fixes: http://autobuild.buildroot.net/results/7ac/7ac82a3ac4b06cb5ad44e92548d66a0f79d149a6/ In file included from Server.cxx:19: ../../resip/stack/ssl/Security.hxx:32:10: fatal error: openssl/ssl.h: No such file or directory clicktoall needs openssl: https://github.com/resiprocate/resiprocate/blob/resiprocate-1.12/apps/clicktocall/Makefile.am#L16 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
50 lines
1.4 KiB
Plaintext
50 lines
1.4 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
|
|
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://www.resiprocate.org/
|
|
|
|
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.
|
|
|
|
config BR2_PACKAGE_RESIPROCATE_APPS
|
|
bool "resiprocate-apps"
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_PCRE
|
|
help
|
|
Build apps clicktocall and sipdial
|
|
|
|
endif # BR2_PACKAGE_RESIPROCATE
|