mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
Changelog:
* Fixed: If USE_LISTEN_ADDRESS_FOR_SENDING_TRAPS was not defined, traps
to IPv6 destinations could not be sent.
* Fixed: Compilation without _SNMPv3 in some example agents
* Added: Added new function Snmpx::get_session_fds_ipv6()
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
553 B
Makefile
20 lines
553 B
Makefile
################################################################################
|
|
#
|
|
# agentpp
|
|
#
|
|
################################################################################
|
|
|
|
AGENTPP_VERSION = 4.5.4
|
|
AGENTPP_SOURCE = agent++-$(AGENTPP_VERSION).tar.gz
|
|
AGENTPP_SITE = http://www.agentpp.com/download
|
|
AGENTPP_LICENSE = Apache-2.0
|
|
AGENTPP_LICENSE_FILES = LICENSE-2_0.txt
|
|
AGENTPP_INSTALL_STAGING = YES
|
|
AGENTPP_DEPENDENCIES = host-pkgconf snmppp
|
|
AGENTPP_CONF_OPTS += \
|
|
--disable-proxy \
|
|
--disable-forwarder \
|
|
--disable-rpath
|
|
|
|
$(eval $(autotools-package))
|