aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
740 B
Makefile
26 lines
740 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_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_OPTS += --enable-snmpv3
|
|
SNMPPP_DEPENDENCIES += openssl
|
|
else
|
|
SNMPPP_CONF_OPTS += --disable-snmpv3
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|