NetBSD/lib/libcrypto/srcs.inc
itojun e5e807d114 always compile RSA into libcrypto.
MKCRYPTO disables the whole crypto tree, and in that case,
we will not have RSA (nor libcrypto) with us.
2000-09-30 12:21:51 +00:00

21 lines
703 B
PHP

# $NetBSD: srcs.inc,v 1.7 2000/09/30 12:21:53 itojun Exp $
CRYPTOINCS= asn1.inc crypto.inc bf.inc bio.inc bn.inc buffer.inc \
cast.inc comp.inc conf.inc des.inc dh.inc dsa.inc \
err.inc evp.inc hmac.inc lhash.inc md2.inc mdc2.inc \
objects.inc pem.inc pkcs12.inc pkcs7.inc rand.inc rc2.inc \
rc4.inc md5.inc ripemd.inc rsa.inc sha.inc stack.inc \
txt_db.inc x509.inc x509v3.inc
# patented algorithms - see ../libcrypto_*
CRYPTOINCS+= idea.inc
CRYPTOINCS+= rc5.inc
.for cryptoinc in ${CRYPTOINCS}
.if exists(${.CURDIR}/arch/${MACHINE_ARCH:C/mipse[bl]/mips/}/${cryptoinc})
.include "${.CURDIR}/arch/${MACHINE_ARCH:C/mipse[bl]/mips/}/${cryptoinc}"
.else
.include "${cryptoinc}"
.endif
.endfor