diff options
author | adam <adam@pkgsrc.org> | 2006-01-24 22:16:55 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2006-01-24 22:16:55 +0000 |
commit | 2ec1e16adb8eed6d50b4b1aad6bced05ba75dddb (patch) | |
tree | 7d38b0f822c429b0c57d850a23ca9a1b73def393 /net/net-snmp/options.mk | |
parent | 9cf3214d955c18328fe68fdffd97114449b5312c (diff) | |
download | pkgsrc-2ec1e16adb8eed6d50b4b1aad6bced05ba75dddb.tar.gz |
Changes 5.3.0.1:
*** Security Fix ***
Changes 5.3:
*** Important Notes ***
Several very significant changes have been made in Net-SNMP for this
release that warrant special attention.
- shared library version number no longer matches the release number. We
now follow the versioning scheme recommended by libtool. For the 5.3
release this means that the libraries now have a SONAME ending with
".so.10", e.g. libnetsnmp.so.10.
- snmpd has not been truncating log files at startup, as documented in
the man pages, for a while now. This default behaviour has been restored.
Please use the '-A' flag if you want to continue appending to your log
files at startup.
- snmptrapd will no longer accept all traps by default. It must be
configured with authorized SNMPv1/v2c community strings and/or SNMPv3
users. Non-authorized traps/informs will be dropped.
- Due to a copyright statement that didn't allow modifications,
snmpnetstat has been completely rewritten. The new version now
accepts the same command-line options as the other tools, which
has introduced a number of incompatible changes. However, it
does now finally support SNMPv3.
Diffstat (limited to 'net/net-snmp/options.mk')
-rw-r--r-- | net/net-snmp/options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/net-snmp/options.mk b/net/net-snmp/options.mk index 687f59b5c31..e29740c70e3 100644 --- a/net/net-snmp/options.mk +++ b/net/net-snmp/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.4 2005/10/03 21:36:59 wiz Exp $ +# $NetBSD: options.mk,v 1.5 2006/01/24 22:16:55 adam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.net-snmp PKG_SUPPORTED_OPTIONS= ssl @@ -14,10 +14,10 @@ PKG_SUPPORTED_OPTIONS+= inet6 .if !empty(PKG_OPTIONS:Minet6) CONFIGURE_ARGS+= --enable-ipv6 -PLIST_SUBST+= IPV6H= +PLIST_SUBST+= IPV6H= .else CONFIGURE_ARGS+= --disable-ipv6 -PLIST_SUBST+= IPV6H="@comment " +PLIST_SUBST+= IPV6H="@comment " .endif .if !empty(PKG_OPTIONS:Mssl) |