Received: by mail.netbsd.org (Postfix, from userid 605) id 949A984E54; Tue, 25 Oct 2022 19:33:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C4DAD84D51 for ; Tue, 25 Oct 2022 19:33:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id PMW90cTdeiCG for ; Tue, 25 Oct 2022 19:33:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2461784D13 for ; Tue, 25 Oct 2022 19:33:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 22128FA90; Tue, 25 Oct 2022 19:33:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1666726395142740" MIME-Version: 1.0 Date: Tue, 25 Oct 2022 19:33:15 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/net/net-snmp To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20221025193315.22128FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1666726395142740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Oct 25 19:33:15 UTC 2022 Modified Files: pkgsrc/net/net-snmp: Makefile Log Message: net-snmp: Fix broken logic. To generate a diff of this commit: cvs rdiff -u -r1.139 -r1.140 pkgsrc/net/net-snmp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1666726395142740 Content-Disposition: inline Content-Length: 844 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/net-snmp/Makefile diff -u pkgsrc/net/net-snmp/Makefile:1.139 pkgsrc/net/net-snmp/Makefile:1.140 --- pkgsrc/net/net-snmp/Makefile:1.139 Tue Oct 18 12:01:52 2022 +++ pkgsrc/net/net-snmp/Makefile Tue Oct 25 19:33:14 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.139 2022/10/18 12:01:52 adam Exp $ +# $NetBSD: Makefile,v 1.140 2022/10/25 19:33:14 jperkin Exp $ .include "Makefile.common" CATEGORIES= net @@ -66,7 +66,7 @@ CONFIGURE_ARGS+= --with-persistent-direc .if !empty(NET_SNMP_MIBDIRS) CONFIGURE_ARGS+= --with-mibdirs=${NET_SNMP_MIBDIRS:Q} .endif -.if ${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS" +.if ${OPSYS} == "NetBSD" CONFIGURE_ARGS+= --with-mib-modules="smux host ucd-snmp/diskio mibII/kernel_netbsd" .elif ${OPSYS} == "SunOS" CONFIGURE_ARGS+= --with-mib-modules="smux host ucd-snmp/diskio" --_----------=_1666726395142740--