Add NO_OPENSSL knob to turn off building of openssl

Requested by:	wollman
This commit is contained in:
Kris Kennaway 2000-01-30 04:11:37 +00:00
parent 158316667c
commit c6680962bf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56898

View File

@ -1,8 +1,11 @@
# $FreeBSD$
SUBDIR= libcipher libcrypto libdes librsaglue libssl
SUBDIR= libcipher libdes
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
SUBDIR+=libtelnet
.endif
.if !defined(NO_OPENSSL)
SUBDIR+=libcrypto librsaglue libssl
.endif
.include <bsd.subdir.mk>