pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/openssh



Module Name:    pkgsrc
Committed By:   gdt
Date:           Tue Nov  7 00:40:44 UTC 2023

Modified Files:
        pkgsrc/security/openssh: options.mk

Log Message:
security/openssh: Enable fido option on all platforms where libfido2 is not BROKEN


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 pkgsrc/security/openssh/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/openssh/options.mk
diff -u pkgsrc/security/openssh/options.mk:1.45 pkgsrc/security/openssh/options.mk:1.46
--- pkgsrc/security/openssh/options.mk:1.45     Mon Nov  6 13:48:41 2023
+++ pkgsrc/security/openssh/options.mk  Tue Nov  7 00:40:43 2023
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.45 2023/11/06 13:48:41 gdt Exp $
+# $NetBSD: options.mk,v 1.46 2023/11/07 00:40:43 gdt Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.openssh
 PKG_SUPPORTED_OPTIONS= editline fido kerberos openssl pam legacymodsz
@@ -6,8 +6,13 @@ PKG_SUGGESTED_OPTIONS= editline openssl
 
 .include "../../mk/bsd.prefs.mk"
 
-# libfido2 does not build on SunOS
-.if ${OPSYS} != "SunOS"
+# libfido2 is BROKEN_EXCEPT_ON_PLATFORM; lacking a facility to query
+# that list, open code it here.
+.if ${OPSYS} == "Darwin" || \
+    ${OPSYS} == "FreeBSD" || ${OPSYS} == "MidnightBSD" || \
+    ${OPSYS} == "Linux" || \
+    ${OPSYS} == "NetBSD" || \
+    ${OPSYS} == "OpenBSD"
 PKG_SUGGESTED_OPTIONS+=        fido
 .endif
 



Home | Main Index | Thread Index | Old Index