diff options
author | jmb <jmb@FreeBSD.org> | 1999-11-16 02:27:37 +0800 |
---|---|---|
committer | jmb <jmb@FreeBSD.org> | 1999-11-16 02:27:37 +0800 |
commit | bdeabd71417a12de14ffe9ac91488a9f24cc41ac (patch) | |
tree | 1c8913d0f5efa5c51671bcab33643771fc333468 /net-mgmt/net-snmp-devel | |
parent | 7dc2e756ee6cdb36b79e3a36c1d6fe3bf67e61e1 (diff) | |
download | freebsd-ports-gnome-bdeabd71417a12de14ffe9ac91488a9f24cc41ac.tar.gz freebsd-ports-gnome-bdeabd71417a12de14ffe9ac91488a9f24cc41ac.tar.zst freebsd-ports-gnome-bdeabd71417a12de14ffe9ac91488a9f24cc41ac.zip |
add two more codes to ICMP error 12 (Parameter Problem).
these two are detailed in RFC1700.
Reviewed by: Garrett Wollman <wollman@khavrinen.lcs.mit.edu>
Diffstat (limited to 'net-mgmt/net-snmp-devel')
-rw-r--r-- | net-mgmt/net-snmp-devel/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net-mgmt/net-snmp-devel/Makefile b/net-mgmt/net-snmp-devel/Makefile index 82283d4a27ab..d54be5dd98f6 100644 --- a/net-mgmt/net-snmp-devel/Makefile +++ b/net-mgmt/net-snmp-devel/Makefile @@ -45,9 +45,9 @@ STARTUP_FILE= ${PREFIX}/etc/rc.d/snmpd.sh.sample .if ${PORTOBJFORMAT} == "aout" BROKEN= "aout build breaks: ld: internal error: RRS relocs exceed allocation 343" .endif -.if ${OSVERSION} >= 400000 -BROKEN= "Uses the old VM system interfaces" -.endif +#.if ${OSVERSION} >= 400000 +#BROKEN= "Uses the old VM system interfaces" +#.endif SHLIB_VERSION=4 PLIST_SUB= shlib=${SHLIB_VERSION} @@ -58,7 +58,9 @@ post-patch: post-install: @( cd ${PREFIX}/bin && strip ${BIN} ) @( cd ${PREFIX}/sbin && strip ${SBIN} ) - @( cd ${PREFIX}/include/ucd-snmp && ${CHMOD} 644 * ) + echo "got to here BEFORE real to post switch" + ( cd ${PREFIX}/include/ucd-snmp && ${CHMOD} 644 * ) + echo "got to here AFTER real to post switch" @( cd ${PREFIX}/share/snmp/mibs && ${CHMOD} 644 * ) @( cd ${PREFIX}/lib && ${LN} -f libsnmp.so.${SHLIB_VERSION} libsnmp.so ) @${MKDIR} ${PREFIX}/share/examples/ucd-snmp |