From b682213c87beb8317933e5b6b19f8921f06b623b Mon Sep 17 00:00:00 2001 From: Kris Kennaway Date: Sun, 30 Jul 2000 22:25:54 +0000 Subject: [PATCH] Don't build sshd if NO_OPENSSL defined. Submitted by: stephen@math.missouri.edu --- secure/usr.sbin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secure/usr.sbin/Makefile b/secure/usr.sbin/Makefile index 041f303f47ac..b8636e5c4333 100644 --- a/secure/usr.sbin/Makefile +++ b/secure/usr.sbin/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ SUBDIR= -.if !defined(NO_OPENSSH) +.if !defined(NO_OPENSSH) && !defined(NO_OPENSSL) SUBDIR+=sshd .endif