Received: by mail.netbsd.org (Postfix, from userid 605) id 00DC784CEF; Thu, 26 Aug 2021 17:00:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 38DBE84CE3 for ; Thu, 26 Aug 2021 17:00:57 +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 7Sqg3z25WG9w for ; Thu, 26 Aug 2021 17:00:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 871C984C86 for ; Thu, 26 Aug 2021 17:00:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 77C37FA97; Thu, 26 Aug 2021 17:00:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1629997256142240" MIME-Version: 1.0 Date: Thu, 26 Aug 2021 17:00:56 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/net/bind911 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20210826170056.77C37FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1629997256142240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Aug 26 17:00:56 UTC 2021 Modified Files: pkgsrc/net/bind911: Makefile Log Message: bind911: Explicitly disable gssapi. At some point it should be a proper option, but until then it needs to be disabled to avoid bad detection (krb5 isn't even buildlinked). To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/net/bind911/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1629997256142240 Content-Disposition: inline Content-Length: 687 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/bind911/Makefile diff -u pkgsrc/net/bind911/Makefile:1.49 pkgsrc/net/bind911/Makefile:1.50 --- pkgsrc/net/bind911/Makefile:1.49 Thu Aug 19 02:59:13 2021 +++ pkgsrc/net/bind911/Makefile Thu Aug 26 17:00:56 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2021/08/19 02:59:13 taca Exp $ +# $NetBSD: Makefile,v 1.50 2021/08/26 17:00:56 jperkin Exp $ DISTNAME= bind-${BIND_VERSION} PKGNAME= ${DISTNAME:S/-P/pl/} @@ -43,6 +43,7 @@ CONFIGURE_ARGS+= --disable-atomic CONFIGURE_ARGS+= --disable-threads .endif CONFIGURE_ARGS.DragonFly+= --disable-kqueue +CONFIGURE_ARGS+= --without-gssapi PKG_GROUPS_VARS+= BIND_GROUP PKG_USERS_VARS= BIND_USER --_----------=_1629997256142240--