From c6680962bf2b576329fe549f963e8fe080db0b6f Mon Sep 17 00:00:00 2001 From: Kris Kennaway Date: Sun, 30 Jan 2000 04:11:37 +0000 Subject: [PATCH] Add NO_OPENSSL knob to turn off building of openssl Requested by: wollman --- secure/lib/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/secure/lib/Makefile b/secure/lib/Makefile index 51655d429c8..0180a3a7210 100644 --- a/secure/lib/Makefile +++ b/secure/lib/Makefile @@ -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