From: <abe...@us...> - 2015-02-20 16:37:54
|
Revision: 6978 http://sourceforge.net/p/astlinux/code/6978 Author: abelbeck Date: 2015-02-20 16:37:52 +0000 (Fri, 20 Feb 2015) Log Message: ----------- netsnmp, build system, set ac_cv_NETSNMP_CAN_USE_SYSCTL=no as per upstream Ref: http://git.buildroot.net/buildroot/commit/package?id=e6b614c9c6e3e1cf9d8a2ee04c471aff9fb7b2ef Modified Paths: -------------- branches/1.0/package/netsnmp/netsnmp.mk Modified: branches/1.0/package/netsnmp/netsnmp.mk =================================================================== --- branches/1.0/package/netsnmp/netsnmp.mk 2015-02-19 15:44:25 UTC (rev 6977) +++ branches/1.0/package/netsnmp/netsnmp.mk 2015-02-20 16:37:52 UTC (rev 6978) @@ -8,7 +8,7 @@ NETSNMP_SITE = http://downloads.sourceforge.net/project/net-snmp/net-snmp/$(NETSNMP_VERSION) NETSNMP_SOURCE = net-snmp-$(NETSNMP_VERSION).tar.gz NETSNMP_INSTALL_STAGING = YES -NETSNMP_CONF_ENV = ac_cv_NETSNMP_CAN_USE_SYSCTL=yes +NETSNMP_CONF_ENV = ac_cv_NETSNMP_CAN_USE_SYSCTL=no NETSNMP_CONF_OPT = --with-persistent-directory=/var/lib/snmp --disable-static \ --with-defaults --enable-mini-agent --without-rpm \ --with-logfile=none --without-kmem-usage \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-02-20 17:35:35
|
Revision: 6979 http://sourceforge.net/p/astlinux/code/6979 Author: abelbeck Date: 2015-02-20 17:35:32 +0000 (Fri, 20 Feb 2015) Log Message: ----------- netsnmp, version bump to 5.7.3, security fix CVE-2014-2285 though perl related Modified Paths: -------------- branches/1.0/package/netsnmp/netsnmp.mk Modified: branches/1.0/package/netsnmp/netsnmp.mk =================================================================== --- branches/1.0/package/netsnmp/netsnmp.mk 2015-02-20 16:37:52 UTC (rev 6978) +++ branches/1.0/package/netsnmp/netsnmp.mk 2015-02-20 17:35:32 UTC (rev 6979) @@ -4,22 +4,33 @@ # ############################################################# -NETSNMP_VERSION = 5.7.2.1 +NETSNMP_VERSION = 5.7.3 NETSNMP_SITE = http://downloads.sourceforge.net/project/net-snmp/net-snmp/$(NETSNMP_VERSION) NETSNMP_SOURCE = net-snmp-$(NETSNMP_VERSION).tar.gz NETSNMP_INSTALL_STAGING = YES NETSNMP_CONF_ENV = ac_cv_NETSNMP_CAN_USE_SYSCTL=no -NETSNMP_CONF_OPT = --with-persistent-directory=/var/lib/snmp --disable-static \ - --with-defaults --enable-mini-agent --without-rpm \ - --with-logfile=none --without-kmem-usage \ - --enable-as-needed --disable-debugging --without-perl-modules \ - --disable-embedded-perl --disable-perl-cc-checks \ - --disable-scripts --with-default-snmp-version="1" \ - --enable-silent-libtool --enable-mfd-rewrites \ - --with-sys-contact="root@localhost" \ - --with-sys-location="Unknown" \ - --with-mib-modules="host ucd-snmp/dlmod agentx" \ - --with-out-mib-modules="disman/event disman/schedule utilities" +NETSNMP_CONF_OPT = \ + --with-persistent-directory=/var/lib/snmp \ + --disable-static \ + --with-defaults \ + --enable-mini-agent \ + --without-rpm \ + --with-logfile=none \ + --without-kmem-usage \ + --enable-as-needed \ + --disable-debugging \ + --without-perl-modules \ + --disable-embedded-perl \ + --disable-perl-cc-checks \ + --disable-scripts \ + --with-default-snmp-version="1" \ + --enable-silent-libtool \ + --enable-mfd-rewrites \ + --with-sys-contact="root@localhost" \ + --with-sys-location="Unknown" \ + --with-mib-modules="host ucd-snmp/dlmod agentx" \ + --with-out-mib-modules="disman/event disman/schedule utilities" \ + --disable-manuals NETSNMP_MAKE = $(MAKE1) NETSNMP_BLOAT_MIBS = BRIDGE DISMAN-EVENT DISMAN-SCHEDULE DISMAN-SCRIPT EtherLike RFC-1215 RFC1155-SMI RFC1213 SCTP SMUX @@ -38,11 +49,6 @@ NETSNMP_CONF_OPT += --without-openssl endif -# Docs -ifneq ($(BR2_HAVE_DOCUMENTATION),y) - NETSNMP_CONF_OPT += --disable-manuals -endif - # Remove IPv6 MIBs if there's no IPv6 ifneq ($(BR2_INET_IPV6),y) define NETSNMP_REMOVE_MIBS_IPV6 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-12-12 16:36:20
|
Revision: 7396 http://sourceforge.net/p/astlinux/code/7396 Author: abelbeck Date: 2015-12-12 16:36:18 +0000 (Sat, 12 Dec 2015) Log Message: ----------- netsmp, enable tsm + DTLSUDP/TLSTCP with openssl, from upstream Buildroot Ref: https://git.busybox.net/buildroot/commit/package?id=984ec386096513c5b3fcfbc4f77f3dbe1ef9d35d Modified Paths: -------------- branches/1.0/package/netsnmp/netsnmp.mk Modified: branches/1.0/package/netsnmp/netsnmp.mk =================================================================== --- branches/1.0/package/netsnmp/netsnmp.mk 2015-12-11 16:38:09 UTC (rev 7395) +++ branches/1.0/package/netsnmp/netsnmp.mk 2015-12-12 16:36:18 UTC (rev 7396) @@ -44,7 +44,9 @@ ifeq ($(BR2_PACKAGE_OPENSSL),y) NETSNMP_DEPENDENCIES += openssl NETSNMP_CONF_OPT += \ - --with-openssl=$(STAGING_DIR)/usr/include/openssl + --with-openssl=$(STAGING_DIR)/usr/include/openssl \ + --with-security-modules="tsm,usm" \ + --with-transports="DTLSUDP,TLSTCP" else NETSNMP_CONF_OPT += --without-openssl endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-12-12 18:04:51
|
Revision: 7397 http://sourceforge.net/p/astlinux/code/7397 Author: abelbeck Date: 2015-12-12 18:04:48 +0000 (Sat, 12 Dec 2015) Log Message: ----------- netsnmp, add 'pciutils' dependency since it can use libpci - pci_lookup_name Modified Paths: -------------- branches/1.0/package/netsnmp/netsnmp.mk Modified: branches/1.0/package/netsnmp/netsnmp.mk =================================================================== --- branches/1.0/package/netsnmp/netsnmp.mk 2015-12-12 16:36:18 UTC (rev 7396) +++ branches/1.0/package/netsnmp/netsnmp.mk 2015-12-12 18:04:48 UTC (rev 7397) @@ -51,6 +51,11 @@ NETSNMP_CONF_OPT += --without-openssl endif +# libpci - pci_lookup_name +ifeq ($(BR2_PACKAGE_PCIUTILS),y) + NETSNMP_DEPENDENCIES += pciutils +endif + # Remove IPv6 MIBs if there's no IPv6 ifneq ($(BR2_INET_IPV6),y) define NETSNMP_REMOVE_MIBS_IPV6 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-12-14 14:17:13
|
Revision: 8035 http://sourceforge.net/p/astlinux/code/8035 Author: abelbeck Date: 2016-12-14 14:17:11 +0000 (Wed, 14 Dec 2016) Log Message: ----------- netsnmp, explicitly disable libnl support using --without-nl since as of 5.7.3 the auto detection looks at the host system, we don't build libnl anyway Ref: https://git.buildroot.net/buildroot/commit/package?id=2c410189bfd843be62b35dd3f5796726cdf5db2a Modified Paths: -------------- branches/1.0/package/netsnmp/netsnmp.mk Modified: branches/1.0/package/netsnmp/netsnmp.mk =================================================================== --- branches/1.0/package/netsnmp/netsnmp.mk 2016-12-13 19:10:36 UTC (rev 8034) +++ branches/1.0/package/netsnmp/netsnmp.mk 2016-12-14 14:17:11 UTC (rev 8035) @@ -40,6 +40,9 @@ NETSNMP_CONF_OPT += --with-endianness=little endif +# libnl - nl_connect +NETSNMP_CONF_OPT += --without-nl + # OpenSSL ifeq ($(BR2_PACKAGE_OPENSSL),y) NETSNMP_DEPENDENCIES += openssl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2017-03-26 01:27:13
|
Revision: 8234 http://sourceforge.net/p/astlinux/code/8234 Author: abelbeck Date: 2017-03-26 01:27:11 +0000 (Sun, 26 Mar 2017) Log Message: ----------- netsnmp, remove extraneous 'net-snmp-create-v3-user' script installed to target Modified Paths: -------------- branches/1.0/package/netsnmp/netsnmp.mk Modified: branches/1.0/package/netsnmp/netsnmp.mk =================================================================== --- branches/1.0/package/netsnmp/netsnmp.mk 2017-03-26 01:06:12 UTC (rev 8233) +++ branches/1.0/package/netsnmp/netsnmp.mk 2017-03-26 01:27:11 UTC (rev 8234) @@ -96,9 +96,10 @@ endef NETSNMP_POST_INSTALL_STAGING_HOOKS += NETSNMP_STAGING_NETSNMP_CONFIG_FIXUP -define NETSNMP_TARGET_REMOVE_NETSNMP_CONFIG - rm -f $(TARGET_DIR)/usr/bin/net-snmp-config +define NETSNMP_TARGET_REMOVE_NETSNMP_SCRIPTS + rm -f $(TARGET_DIR)/usr/bin/net-snmp-config + rm -f $(TARGET_DIR)/usr/bin/net-snmp-create-v3-user endef -NETSNMP_POST_INSTALL_TARGET_HOOKS += NETSNMP_TARGET_REMOVE_NETSNMP_CONFIG +NETSNMP_POST_INSTALL_TARGET_HOOKS += NETSNMP_TARGET_REMOVE_NETSNMP_SCRIPTS $(eval $(call AUTOTARGETS,package,netsnmp)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |