Don't build sshd if NO_OPENSSL defined.

Submitted by:	stephen@math.missouri.edu
This commit is contained in:
Kris Kennaway 2000-07-30 22:25:54 +00:00
parent 99f9320ef7
commit b682213c87
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=64034

View File

@ -1,7 +1,7 @@
# $FreeBSD$
SUBDIR=
.if !defined(NO_OPENSSH)
.if !defined(NO_OPENSSH) && !defined(NO_OPENSSL)
SUBDIR+=sshd
.endif