Add NO_OPENSSL knob to turn off building of openssl

Requested by:	wollman
This commit is contained in:
kris 2000-01-30 04:11:37 +00:00
parent 52220d80c5
commit 4a0df206ce

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>