Commit 9db8d874 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

snmppp: new package



[Peter: add comment about why AUTORECONF is needed]
Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 05d59aa2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -637,6 +637,7 @@ source "package/omniorb/Config.in"
source "package/openpgm/Config.in"
source "package/ortp/Config.in"
source "package/slirp/Config.in"
source "package/snmppp/Config.in"
source "package/usbredir/Config.in"
source "package/wvstreams/Config.in"
source "package/zeromq/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_SNMPPP
	bool "snmp++"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_TOOLCHAIN_HAS_THREADS
	select BR2_PACKAGE_OPENSSL
	help
	  SNMP++v3.x is a C++ API which supports SNMP v1, v2c, and v3.

	  http://www.agentpp.com/snmp_pp3_x/snmp_pp3_x.html

comment "snmp++ requires a toolchain with threads and C++ support enabled"
	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
+17 −0
Original line number Diff line number Diff line
################################################################################
#
# snmp++
#
################################################################################

SNMPPP_VERSION = 3.3.0
SNMPPP_SOURCE = snmp++v$(SNMPPP_VERSION).tar.gz
SNMPPP_SITE = http://www.agentpp.com
SNMPPP_DEPENDENCIES = openssl host-pkgconf
SNMPPP_INSTALL_STAGING = YES
# no configure script in tarball
SNMPPP_AUTORECONF = YES
SNMPPP_LICENSE = SNMP++
SNMPPP_LICENSE_FILES = snmp_pp/snmp_pp.cpp

$(eval $(autotools-package))