6db3b6d48c
Update hash of src/v3.cpp, update in year and "Frank Fock" added: - _## SNMP++ v3.3 + _## SNMP++ v3.4 - _## Copyright (c) 2001-2013 Jochen Katz, Frank Fock + _## Copyright (c) 2001-2021 Jochen Katz, Frank Fock - _## Hewlett-Packard and Jochen Katz make no representations about the - _## suitability of this software for any purpose. It is provided + _## Hewlett-Packard, Frank Fock, and Jochen Katz make no representations + _## about the suitability of this software for any purpose. It is provided https://www.agentpp.com/download/changes_snmp++v3.txt Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
749 B
Makefile
25 lines
749 B
Makefile
################################################################################
|
|
#
|
|
# snmppp
|
|
#
|
|
################################################################################
|
|
|
|
SNMPPP_VERSION = 3.4.9
|
|
SNMPPP_SOURCE = snmp++-$(SNMPPP_VERSION).tar.gz
|
|
SNMPPP_SITE = http://www.agentpp.com/download
|
|
SNMPPP_DEPENDENCIES = host-pkgconf
|
|
SNMPPP_INSTALL_STAGING = YES
|
|
SNMPPP_CONF_OPTS = $(if $(BR2_PACKAGE_SNMPPP_LOGGING),--enable-logging,--disable-logging)
|
|
SNMPPP_LICENSE = SNMP++
|
|
SNMPPP_LICENSE_FILES = src/v3.cpp
|
|
|
|
ifeq ($(BR2_PACKAGE_SNMPPP_SNMPV3),y)
|
|
SNMPPP_CONF_ENV += CXXFLAGS="$(TARGET_CXXFLAGS) -std=c++11"
|
|
SNMPPP_CONF_OPTS += --enable-snmpv3
|
|
SNMPPP_DEPENDENCIES += openssl
|
|
else
|
|
SNMPPP_CONF_OPTS += --disable-snmpv3
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|