freebsd-dev/secure/lib/Makefile
Peter Wemm 86c9b3ab20 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.
2000-07-03 06:24:23 +00:00

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>