07630c4ca6
According to the documentation: "Header: The file starts with a header. It contains the module name, preferably in lowercase, enclosed between separators made of 80 hashes." This patch makes the appropriate changes. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
737 B
Makefile
26 lines
737 B
Makefile
################################################################################
|
|
#
|
|
# snmppp
|
|
#
|
|
################################################################################
|
|
|
|
SNMPPP_VERSION = 3.3.4
|
|
SNMPPP_SOURCE = snmp++-$(SNMPPP_VERSION).tar.gz
|
|
SNMPPP_SITE = http://www.agentpp.com
|
|
SNMPPP_DEPENDENCIES = host-pkgconf
|
|
SNMPPP_INSTALL_STAGING = YES
|
|
# no configure script in tarball
|
|
SNMPPP_AUTORECONF = YES
|
|
SNMPPP_CONF_OPT = $(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_OPT += --enable-snmpv3
|
|
SNMPPP_DEPENDENCIES += openssl
|
|
else
|
|
SNMPPP_CONF_OPT += --disable-snmpv3
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|