Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2554484E53 for ; Fri, 1 Dec 2023 11:01:06 +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 whUMSNdgOX0X for ; Fri, 1 Dec 2023 11:01:05 +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 768B784D17 for ; Fri, 1 Dec 2023 11:01:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 73E12FA40; Fri, 1 Dec 2023 11:01:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1701428465143730" MIME-Version: 1.0 Date: Fri, 1 Dec 2023 11:01:05 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/security/openssh To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20231201110105.73E12FA40@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1701428465143730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Dec 1 11:01:05 UTC 2023 Modified Files: pkgsrc/security/openssh: options.mk Log Message: openssh: Query PLATFORM_SUPPORTS_FIDO2 for fido option default To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/security/openssh/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1701428465143730 Content-Disposition: inline Content-Length: 1074 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.47 pkgsrc/security/openssh/options.mk:1.48 --- pkgsrc/security/openssh/options.mk:1.47 Wed Nov 8 10:48:45 2023 +++ pkgsrc/security/openssh/options.mk Fri Dec 1 11:01:05 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.47 2023/11/08 10:48:45 nia Exp $ +# $NetBSD: options.mk,v 1.48 2023/12/01 11:01:05 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.openssh PKG_SUPPORTED_OPTIONS= editline fido kerberos openssl pam legacymodsz @@ -6,13 +6,9 @@ PKG_SUGGESTED_OPTIONS= editline openssl .include "../../mk/bsd.prefs.mk" -# libfido2 is BROKEN_EXCEPT_ON_PLATFORM; lacking a facility to query -# that list, open code it here. -.if (${OPSYS} == "Darwin" && empty(MACHINE_ARCH:Mpowerpc*)) || \ - ${OPSYS} == "FreeBSD" || ${OPSYS} == "MidnightBSD" || \ - ${OPSYS} == "Linux" || \ - ${OPSYS} == "NetBSD" || \ - ${OPSYS} == "OpenBSD" +.include "../../security/libfido2/platform.mk" + +.if ${PLATFORM_SUPPORTS_FIDO2:tl} != "no" PKG_SUGGESTED_OPTIONS+= fido .endif --_----------=_1701428465143730--