diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2019-11-18 16:08:58 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2019-11-18 16:08:58 +0000 |
commit | 984e3359aff76cc50819ccbba1cdd1e6105f406f (patch) | |
tree | 108f2ee1ac1379b13e2c48daccd8220cea238261 /usr.bin/ssh/Makefile.inc | |
parent | 1a2b232620195444a1d10809d0684f1b06f2206a (diff) |
add the missing WITH_OPENSSL ifdefs after the ED25519-SK addition; ok djm@
Diffstat (limited to 'usr.bin/ssh/Makefile.inc')
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index 3032ea5f2fd..7c8e4fe7b27 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.78 2019/11/15 05:25:52 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.79 2019/11/18 16:08:57 naddy Exp $ .include <bsd.own.mk> @@ -71,6 +71,8 @@ SRCS_KEY+= cipher.c SRCS_KEY+= cipher-chachapoly.c SRCS_KEY+= chacha.c SRCS_KEY+= poly1305.c +SRCS_KEY+= ssh-sk.c +SRCS_KEY+= sk-usbhid.c .if (${OPENSSL:L} == "yes") SRCS_KEY+= ssh-dss.c SRCS_KEY+= ssh-ecdsa.c @@ -78,8 +80,6 @@ SRCS_KEY+= ssh-ecdsa-sk.c SRCS_KEY+= ssh-rsa.c SRCS_KEY+= sshbuf-getput-crypto.c SRCS_KEY+= digest-openssl.c -SRCS_KEY+= ssh-sk.c -SRCS_KEY+= sk-usbhid.c .else SRCS_KEY+= cipher-aesctr.c SRCS_KEY+= rijndael.c |