Config.in 915 B

1234567891011121314151617181920212223
  1. config 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. SNMPv3 support is enabled if SNMP++ enables it.
  17. http://www.agentpp.com/agentpp3_5/agentpp3_5.html
  18. comment "agent++ needs a toolchain w/ threads, C++, dynamic library"
  19. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
  20. BR2_STATIC_LIBS