e1f99b045c
-- Unknown Now that the RSA algorithm is released into the public domain, build librsaintl by default unless NO_RSAINTL is set in make.conf. The native OpenSSL implementation of RSA is much faster, doesn't have an artificial keysize limitation, has 30% fewer calories and tastes great!
22 lines
444 B
Makefile
22 lines
444 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) && \
|
|
!defined(NO_RSAINTL)
|
|
SUBDIR+=librsaintl
|
|
.endif
|
|
.endif
|
|
.if !defined(NO_OPENSSH)
|
|
SUBDIR+=libssh
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|