mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
USA_RESIDENT is forced to YES or NO at the start of Makefile.inc1
Use that to be the final arbiter of whether or not to build the librsaintl.so plugin for openssl/openssh. Add a magic WANT_RSAINTL flag to force building even if USA_RESIDENT=YES.
This commit is contained in:
parent
a9e2722c58
commit
86c9b3ab20
1 changed files with 2 additions and 1 deletions
|
|
@ -9,7 +9,8 @@ SUBDIR+=libcrypto librsaglue libssl
|
|||
.if exists(${.CURDIR}/../../crypto/openssl/rsaref)
|
||||
SUBDIR+=librsausa
|
||||
.endif
|
||||
.if exists(${.CURDIR}/../../crypto/openssl/crypto/rsa/rsa_eay.c)
|
||||
.if exists(${.CURDIR}/../../crypto/openssl/crypto/rsa/rsa_eay.c) &&
|
||||
(${USA_RESIDENT} != YES || defined(MAKE_RSAINTL))
|
||||
SUBDIR+=librsaintl
|
||||
.endif
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue