From owner-svn-ports-head@freebsd.org Wed Feb 7 18:11:28 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 735CFF19BB7; Wed, 7 Feb 2018 18:11:28 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 250A275EA3; Wed, 7 Feb 2018 18:11:28 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 201892550; Wed, 7 Feb 2018 18:11:28 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w17IBRvi036906; Wed, 7 Feb 2018 18:11:27 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w17IBReT036905; Wed, 7 Feb 2018 18:11:27 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201802071811.w17IBReT036905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Wed, 7 Feb 2018 18:11:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461161 - head/net-mgmt/net-snmp X-SVN-Group: ports-head X-SVN-Commit-Author: zi X-SVN-Commit-Paths: head/net-mgmt/net-snmp X-SVN-Commit-Revision: 461161 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Feb 2018 18:11:28 -0000 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