Do not build libmp if NOSECURE is set (NO_OPENSSL is on a subset of NOSECURE)

This commit is contained in:
David E. O'Brien 2002-05-15 20:22:50 +00:00
parent fa2259b9bb
commit 2ec6a0bc46
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96687

View File

@ -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