From 2ec6a0bc466b624278a84289dfbac8cd1a5e117e Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 15 May 2002 20:22:50 +0000 Subject: [PATCH] Do not build libmp if NOSECURE is set (NO_OPENSSL is on a subset of NOSECURE) --- lib/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Makefile b/lib/Makefile index c5d1fac0cc6..dbf840adedb 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -72,7 +72,8 @@ _compat= compat _libtelnet= libtelnet .endif -.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) +.if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) \ + && !defined(NOSECURE) _libmp= libmp .endif