xref: /OK3568_Linux_fs/buildroot/package/resiprocate/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyuncomment "resiprocate needs a toolchain w/ C++, threads, wchar"
2*4882a593Smuzhiyun	depends on BR2_USE_MMU
3*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
4*4882a593Smuzhiyun
5*4882a593Smuzhiyunconfig BR2_PACKAGE_RESIPROCATE
6*4882a593Smuzhiyun	bool "resiprocate"
7*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
8*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS
9*4882a593Smuzhiyun	depends on BR2_USE_WCHAR
10*4882a593Smuzhiyun	depends on BR2_USE_MMU # fork()
11*4882a593Smuzhiyun	select BR2_PACKAGE_C_ARES
12*4882a593Smuzhiyun	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
13*4882a593Smuzhiyun	help
14*4882a593Smuzhiyun	  reSIProcate is a framework that aims to fully implement the
15*4882a593Smuzhiyun	  SIP protocol in first class C++. It is intended for use in
16*4882a593Smuzhiyun	  other applications, such as the repro SIP proxy.
17*4882a593Smuzhiyun
18*4882a593Smuzhiyun	  By default this package provides the core libraries: librutil
19*4882a593Smuzhiyun	  (utilities), libresip (SIP stack/RFC compliant message
20*4882a593Smuzhiyun	  parsing) and libdum (SIP Dialog Usage Manager, a state
21*4882a593Smuzhiyun	  machine for SIP dialogs).
22*4882a593Smuzhiyun
23*4882a593Smuzhiyun	  https://www.resiprocate.org/
24*4882a593Smuzhiyun
25*4882a593Smuzhiyunif BR2_PACKAGE_RESIPROCATE
26*4882a593Smuzhiyun
27*4882a593Smuzhiyunconfig BR2_PACKAGE_RESIPROCATE_DTLS_SUPPORT
28*4882a593Smuzhiyun	bool "DTLS support"
29*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
30*4882a593Smuzhiyun	help
31*4882a593Smuzhiyun	  Enable DTLS support (requires OpenSSL)
32*4882a593Smuzhiyun
33*4882a593Smuzhiyunconfig BR2_PACKAGE_RESIPROCATE_REND
34*4882a593Smuzhiyun	bool "resiprocate-rend"
35*4882a593Smuzhiyun	select BR2_PACKAGE_BOOST
36*4882a593Smuzhiyun	select BR2_PACKAGE_BOOST_SYSTEM
37*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
38*4882a593Smuzhiyun	select BR2_PACKAGE_POPT
39*4882a593Smuzhiyun	help
40*4882a593Smuzhiyun	  Rend is tool that is was created specifically to load test
41*4882a593Smuzhiyun	  gtSIP based presence servers.
42*4882a593Smuzhiyun
43*4882a593Smuzhiyunconfig BR2_PACKAGE_RESIPROCATE_APPS
44*4882a593Smuzhiyun	bool "resiprocate-apps"
45*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
46*4882a593Smuzhiyun	select BR2_PACKAGE_PCRE
47*4882a593Smuzhiyun	help
48*4882a593Smuzhiyun	  Build apps clicktocall and sipdial
49*4882a593Smuzhiyun
50*4882a593Smuzhiyunendif # BR2_PACKAGE_RESIPROCATE
51