1config BR2_PACKAGE_AGENTPP 2 bool "agent++" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS # snmp++ 5 depends on !BR2_STATIC_LIBS # snmp++ 6 select BR2_PACKAGE_SNMPPP 7 help 8 AGENT++ is a set of C++ classes which provides a complete 9 protocol engine and dispatch table for the development of 10 SNMP agents. AGENT++ is a multilingual API which supports 11 SNMPv1, SNMPv2c, and SNMPv3. It provides various C++ classes 12 implementing prototypes for scalar and table SNMP managed 13 objects that can be customized by derivation. Additional 14 classes support the development of proxy agents as well as 15 sending notifications. 16 17 SNMPv3 support is enabled if SNMP++ enables it. 18 19 http://www.agentpp.com/agentpp3_5/agentpp3_5.html 20 21comment "agent++ needs a toolchain w/ threads, C++, dynamic library" 22 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 23 BR2_STATIC_LIBS 24