diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-15 20:22:50 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-15 20:22:50 +0000 |
commit | 5bb9f5bc9f7d2818e11d01be44cd9e4a624c151c (patch) | |
tree | 9946266c69bbae0424881d6dd15b2468b6991ca9 /lib/Makefile | |
parent | b966bca4d3d0ad1c6b13a52e8d73344392cd1277 (diff) | |
download | FreeBSD-src-5bb9f5bc9f7d2818e11d01be44cd9e4a624c151c.zip FreeBSD-src-5bb9f5bc9f7d2818e11d01be44cd9e4a624c151c.tar.gz |
Do not build libmp if NOSECURE is set (NO_OPENSSL is on a subset of NOSECURE)
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index c5d1fac..dbf840a 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 |