xref: /OK3568_Linux_fs/buildroot/package/snmppp/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_SNMPPP
2*4882a593Smuzhiyun	bool "snmp++"
3*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
4*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS
5*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS
6*4882a593Smuzhiyun	help
7*4882a593Smuzhiyun	  SNMP++v3.x is a C++ API which supports SNMP v1, v2c, and v3.
8*4882a593Smuzhiyun
9*4882a593Smuzhiyun	  http://www.agentpp.com/snmp_pp3_x/snmp_pp3_x.html
10*4882a593Smuzhiyun
11*4882a593Smuzhiyunif BR2_PACKAGE_SNMPPP
12*4882a593Smuzhiyun
13*4882a593Smuzhiyunconfig BR2_PACKAGE_SNMPPP_LOGGING
14*4882a593Smuzhiyun	bool "enable logging"
15*4882a593Smuzhiyun	help
16*4882a593Smuzhiyun	  Enable logging output for SNMP++.
17*4882a593Smuzhiyun	  According to the SNMP++ documentation, disabling logging
18*4882a593Smuzhiyun	  "increases performance drastically and minimizes memory
19*4882a593Smuzhiyun	  consumption".
20*4882a593Smuzhiyun
21*4882a593Smuzhiyunconfig BR2_PACKAGE_SNMPPP_SNMPV3
22*4882a593Smuzhiyun	bool "enable SNMPv3"
23*4882a593Smuzhiyun	default y
24*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
25*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
26*4882a593Smuzhiyun	select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
27*4882a593Smuzhiyun	help
28*4882a593Smuzhiyun	  Enable optional support for SNMP++. This selects OpenSSL.
29*4882a593Smuzhiyun
30*4882a593Smuzhiyuncomment "SNMPv3 needs a toolchain w/ gcc >= 4.8"
31*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
32*4882a593Smuzhiyun
33*4882a593Smuzhiyunendif
34*4882a593Smuzhiyun
35*4882a593Smuzhiyuncomment "snmp++ needs a toolchain w/ threads, C++, dynamic library"
36*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
37*4882a593Smuzhiyun		BR2_STATIC_LIBS
38