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:           Mon Nov  6 13:34:33 UTC 2023

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

Log Message:
security/openssh: Only disable fido on SunOS

Relative to revision 1.40, this disables the fido option on SunOS,
because libfido2 doesn't build there.  This differs from the previous
commits, which disabled fido everywhere but NetBSD, and then
everywhere but NetBSD and Darwin.  Surely it works on Linux, and in
general it ought to work everywhere.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 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.43 pkgsrc/security/openssh/options.mk:1.44
--- pkgsrc/security/openssh/options.mk:1.43     Mon Nov  6 10:21:09 2023
+++ pkgsrc/security/openssh/options.mk  Mon Nov  6 13:34:32 2023
@@ -1,11 +1,19 @@
-# $NetBSD: options.mk,v 1.43 2023/11/06 10:21:09 jperkin Exp $
+# $NetBSD: options.mk,v 1.44 2023/11/06 13:34:32 gdt Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.openssh
 PKG_SUPPORTED_OPTIONS= editline fido kerberos openssl pam legacymodsz
 PKG_SUGGESTED_OPTIONS= editline openssl
 
-PKG_SUGGESTED_OPTIONS.Darwin+= fido
-PKG_SUGGESTED_OPTIONS.NetBSD+= fido pam
+.include "../../mk/bsd.prefs.mk"
+
+# libfido2 does not build on SunOS
+.if ${OPSYS} != "SunOS"
+PKG_SUGGESTED_OPTIONS+=        fido
+.endif
+
+.if ${OPSYS} == "NetBSD"
+PKG_SUGGESTED_OPTIONS+=        pam
+.endif
 
 .include "../../mk/bsd.options.mk"
 



Home | Main Index | Thread Index | Old Index