Don't build crypto-enabled telnetd if NO_OPENSSL is defined, since it

attempts to link against libcrypto.
This commit is contained in:
Kris Kennaway 2000-07-25 01:11:17 +00:00
parent 678f9e335e
commit abe829c0e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63824

View File

@ -1,6 +1,6 @@
# $FreeBSD$
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4) && !defined(NO_OPENSSL)
SUBDIR= telnetd
.endif