svn commit: r461161 - head/net-mgmt/net-snmp

Ryan Steinmetz zi at FreeBSD.org
Wed Feb 7 18:11:28 UTC 2018


Author: zi
Date: Wed Feb  7 18:11:27 2018
New Revision: 461161
URL: https://svnweb.freebsd.org/changeset/ports/461161

Log:
  - Do not try to build under mips/mips64 as SSP is broken per r306364
  
  Reported by:	sbruno

Modified:
  head/net-mgmt/net-snmp/Makefile

Modified: head/net-mgmt/net-snmp/Makefile
==============================================================================
--- head/net-mgmt/net-snmp/Makefile	Wed Feb  7 18:03:24 2018	(r461160)
+++ head/net-mgmt/net-snmp/Makefile	Wed Feb  7 18:11:27 2018	(r461161)
@@ -18,6 +18,9 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libpkg.so:ports-mgmt/pkg
 
+NOT_FOR_ARCHS=		mips mips64
+NOT_FOR_ARCHS_REASON=	SSP is currently broken on MIPS
+
 OPTIONS_DEFINE=	IPV6 MFD_REWRITES PERL PERL_EMBEDDED PYTHON DUMMY TKMIB \
 		MYSQL AX_SOCKONLY UNPRIVILEGED SMUX DOCS JAIL AX_DISABLE_TRAP \
 		TLS
@@ -28,7 +31,6 @@ MFD_REWRITES_DESC=	Use new MFD rewrites of mib modules
 PERL_EMBEDDED_DESC=	Build embedded perl
 DUMMY_DESC=		Enable dummy values as placeholders
 TKMIB_DESC=		Install graphical MIB browser
-#DMALLOC_DESC=		Enable dmalloc debug memory allocator
 AX_SOCKONLY_DESC=	Disable UDP/TCP transports for agentx
 AX_DISABLE_TRAP_DESC=	Disable agentx subagent code in snmptrapd
 UNPRIVILEGED_DESC=	Allow unprivileged users to execute net-snmp
@@ -117,13 +119,6 @@ CONFIGURE_ARGS+=--disable-embedded-perl --without-perl
 PLIST_SUB+=	WITH_PERL_EMBEDDED="@comment "
 PLIST_SUB+=	WITH_PERL="@comment "
 .endif
-
-#.if ${PORT_OPTIONS:MDMALLOC}
-#LIB_DEPENDS+=	libdmalloc.so:devel/dmalloc
-#CONFIGURE_ARGS+=--with-dmalloc=${LOCALBASE}
-#.else
-#CONFIGURE_ARGS+=--without-dmalloc
-#.endif
 
 .if ${PORT_OPTIONS:MMYSQL}
 USE_MYSQL=	yes


More information about the svn-ports-head mailing list