diff options
author | kris <kris@FreeBSD.org> | 2000-03-09 06:29:05 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-03-09 06:29:05 +0000 |
commit | 0d1f47825b8bc213c9c4e1fdef06b1a35096446d (patch) | |
tree | f1fa21cc8ddc4c376857a5866b4b4cb27002706c /secure | |
parent | 45f640e388df179b42641eb7ff526b05617cce21 (diff) | |
download | FreeBSD-src-0d1f47825b8bc213c9c4e1fdef06b1a35096446d.zip FreeBSD-src-0d1f47825b8bc213c9c4e1fdef06b1a35096446d.tar.gz |
Buildworld fixes for NO_OPENSSH and NO_OPENSSL
Approved by: jkh
Diffstat (limited to 'secure')
-rw-r--r-- | secure/usr.bin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile index 3d284da..fd67fd8 100644 --- a/secure/usr.bin/Makefile +++ b/secure/usr.bin/Makefile @@ -1,14 +1,14 @@ # $FreeBSD$ SUBDIR= bdes -.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4) && !defined(MAKE_KERBEROS5) +.if !defined(NOCRYPT) && !defined(NO_OPENSSL) && !defined(MAKE_KERBEROS4) && !defined(MAKE_KERBEROS5) SUBDIR+=telnet .endif .if !defined(NO_OPENSSL) SUBDIR+=openssl -.endif .if !defined(NO_OPENSSH) SUBDIR+=scp ssh ssh-add ssh-agent ssh-keygen .endif +.endif .include <bsd.subdir.mk> |