mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
86c9b3ab20
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.
22 lines
471 B
Makefile
22 lines
471 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= libcipher
|
|
.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
|
|
SUBDIR+=libtelnet
|
|
.endif
|
|
.if !defined(NO_OPENSSL)
|
|
SUBDIR+=libcrypto librsaglue libssl
|
|
.if exists(${.CURDIR}/../../crypto/openssl/rsaref)
|
|
SUBDIR+=librsausa
|
|
.endif
|
|
.if exists(${.CURDIR}/../../crypto/openssl/crypto/rsa/rsa_eay.c) &&
|
|
(${USA_RESIDENT} != YES || defined(MAKE_RSAINTL))
|
|
SUBDIR+=librsaintl
|
|
.endif
|
|
.endif
|
|
.if !defined(NO_OPENSSH)
|
|
SUBDIR+=libssh
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|