1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-12 14:29:28 +00:00

Canonical way of determining whether or not to use crypto.

This commit is contained in:
Dag-Erling Smørgrav 2003-01-09 11:57:58 +00:00
parent 435dd29b27
commit 9939988ef2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109000

View File

@ -2,7 +2,7 @@
SUBDIR= lib add create delete info version
.if exists(${.CURDIR}/../../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
.if !defined(NOCRYPT) && !defined(NOSECURE) !defined(NO_OPENSSL)
DISTRIBUTION= crypto
SUBDIR+= sign
.endif