Received: by mail.netbsd.org (Postfix, from userid 605) id C062184D95; Tue, 18 Jun 2019 15:19:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 46ABF84D71 for ; Tue, 18 Jun 2019 15:19:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id r8iYamXF5_hJ for ; Tue, 18 Jun 2019 15:19:20 +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 9B60F84D32 for ; Tue, 18 Jun 2019 15:19:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 94B98FBF4; Tue, 18 Jun 2019 15:19:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1560871160191150" MIME-Version: 1.0 Date: Tue, 18 Jun 2019 15:19:20 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/chat/znc To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190618151920.94B98FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1560871160191150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Jun 18 15:19:20 UTC 2019 Modified Files: pkgsrc/chat/znc: options.mk Log Message: znc: Rename sasl option to sasl-cyrus. This option is somewhat confusing currently. This does /not/ control support for logging in to IRC servers using SASL, which happily works without the dependency. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/chat/znc/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1560871160191150 Content-Disposition: inline Content-Length: 915 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/znc/options.mk diff -u pkgsrc/chat/znc/options.mk:1.1 pkgsrc/chat/znc/options.mk:1.2 --- pkgsrc/chat/znc/options.mk:1.1 Sun Dec 16 02:05:23 2018 +++ pkgsrc/chat/znc/options.mk Tue Jun 18 15:19:20 2019 @@ -1,9 +1,11 @@ -# $NetBSD: options.mk,v 1.1 2018/12/16 02:05:23 nia Exp $ +# $NetBSD: options.mk,v 1.2 2019/06/18 15:19:20 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.znc -PKG_SUPPORTED_OPTIONS= debug inet6 perl python sasl tcl +PKG_SUPPORTED_OPTIONS= debug inet6 perl python sasl-cyrus tcl PKG_SUGGESTED_OPTIONS= inet6 +PKG_OPTIONS_LEGACY_OPTS+= sasl:sasl-cyrus + .include "../../mk/bsd.options.mk" # Debug build @@ -41,7 +43,7 @@ PLIST_SRC+= PLIST.python .endif # Cyrus SASL support -.if !empty(PKG_OPTIONS:Msasl) +.if !empty(PKG_OPTIONS:Msasl-cyrus) .include "../../security/cyrus-sasl/buildlink3.mk" CONFIGURE_ARGS+= --enable-cyrus PLIST_SRC+= PLIST.cyrus --_----------=_1560871160191150--