hc
2024-08-16 94ba65e25ce534ec0515708c9e0835242345bc7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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://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