mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add NO_OPENSSL knob to turn off building of openssl
Requested by: wollman
This commit is contained in:
parent
158316667c
commit
c6680962bf
1 changed files with 4 additions and 1 deletions
|
|
@ -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 <bsd.subdir.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue