Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E80ED85060 for ; Mon, 6 Nov 2023 10:11:35 +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 Pzq15IRla0il for ; Mon, 6 Nov 2023 10:11:35 +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 4AD1F84DB9 for ; Mon, 6 Nov 2023 10:11:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A5AE6FA2C; Mon, 6 Nov 2023 10:11:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699265494279510" MIME-Version: 1.0 Date: Mon, 6 Nov 2023 10:11:34 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/openssh To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231106101134.A5AE6FA2C@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699265494279510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Nov 6 10:11:34 UTC 2023 Modified Files: pkgsrc/security/openssh: options.mk Log Message: openssh: enable fido for Darwin To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/security/openssh/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699265494279510 Content-Disposition: inline Content-Length: 760 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/openssh/options.mk diff -u pkgsrc/security/openssh/options.mk:1.41 pkgsrc/security/openssh/options.mk:1.42 --- pkgsrc/security/openssh/options.mk:1.41 Mon Nov 6 09:27:57 2023 +++ pkgsrc/security/openssh/options.mk Mon Nov 6 10:11:34 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.41 2023/11/06 09:27:57 jperkin Exp $ +# $NetBSD: options.mk,v 1.42 2023/11/06 10:11:34 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.openssh PKG_SUPPORTED_OPTIONS= editline fido kerberos openssl pam legacymodsz @@ -9,6 +9,9 @@ PKG_SUGGESTED_OPTIONS= editline openssl .if ${OPSYS} == "NetBSD" PKG_SUGGESTED_OPTIONS+= fido pam .endif +.if ${OPSYS} == "Darwin" +PKG_SUGGESTED_OPTIONS+= fido +.endif .include "../../mk/bsd.options.mk" --_----------=_1699265494279510--