configs/bananapro: bump Linux to 4.10.4
[buildroot-gz.git] / package / snmppp / Config.in
blob9e800fd57ea85e38f0dabfb96d57484ee8c4c3e9
1 config BR2_PACKAGE_SNMPPP
2         bool "snmp++"
3         depends on BR2_INSTALL_LIBSTDCPP
4         depends on BR2_TOOLCHAIN_HAS_THREADS
5         depends on !BR2_STATIC_LIBS
6         help
7           SNMP++v3.x is a C++ API which supports SNMP v1, v2c, and v3.
9           http://www.agentpp.com/snmp_pp3_x/snmp_pp3_x.html
11 if BR2_PACKAGE_SNMPPP
13 config BR2_PACKAGE_SNMPPP_LOGGING
14         bool "enable logging"
15         help
16           Enable logging output for SNMP++.
17           According to the SNMP++ documentation, disabling logging "increases
18           performance drastically and minimizes memory consumption".
20 config BR2_PACKAGE_SNMPPP_SNMPV3
21         bool "enable SNMPv3"
22         default y
23         select BR2_PACKAGE_OPENSSL
24         help
25           Enable optional support for SNMP++. This selects OpenSSL.
27 endif
29 comment "snmp++ needs a toolchain w/ threads, C++, dynamic library"
30         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
31                 BR2_STATIC_LIBS