aboutsummaryrefslogtreecommitdiff
path: root/secure/lib/libcrypto
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-02-25 08:18:43 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-02-25 08:18:43 +0000
commit07a0979e84ea285152a6c37d4fb758dbdb0043bb (patch)
tree56609cdf21c7021cc41ec225bf789686f06984a6 /secure/lib/libcrypto
parent3d5985cc5fee9d2f31c84140130ca0bc73fabed3 (diff)
downloadsrc-07a0979e84ea285152a6c37d4fb758dbdb0043bb.tar.gz
src-07a0979e84ea285152a6c37d4fb758dbdb0043bb.zip
Fold libRSAglue into libcrypto so we don't have to special-case
all the builds. There is still no actual RSA implementation code in libcrypto or src/* on US code trees.
Notes
Notes: svn path=/head/; revision=57474
Diffstat (limited to 'secure/lib/libcrypto')
-rw-r--r--secure/lib/libcrypto/Makefile8
-rw-r--r--secure/lib/libcrypto/Makefile.inc9
2 files changed, 7 insertions, 10 deletions
diff --git a/secure/lib/libcrypto/Makefile b/secure/lib/libcrypto/Makefile
index 38117ff4e50a..338e50f4a286 100644
--- a/secure/lib/libcrypto/Makefile
+++ b/secure/lib/libcrypto/Makefile
@@ -127,9 +127,11 @@ SRCS+= rmd_dgst.c rmd_one.c
.if defined(WITH_RSA) && ${WITH_RSA} == YES
SRCS+= rsa_chk.c rsa_err.c rsa_gen.c rsa_lib.c rsa_none.c rsa_oaep.c \
rsa_pk1.c rsa_saos.c rsa_sign.c rsa_ssl.c
+.if (!defined(RSAREF) || ${RSAREF} != YES) && exists(${LCRYPTO_SRC}/rsa/rsa_eay.c)
+SRCS+= rsa_eay.c # native rsa
+.else
+SRCS+= rsar_err.c rsaref.c rsaref_stubs.c # external rsaref
HDRS+= ../rsaref/rsaref.h
-.if !defined(RSAREF) || ${RSAREF} != YES
-SRCS+= rsa_eay.c
.endif
.endif
@@ -214,7 +216,7 @@ beforeinstall: ${.OBJDIR}/openssl/opensslconf.h
${LCRYPTO_SRC}/mdc2 ${LCRYPTO_SRC}/objects ${LCRYPTO_SRC}/pem \
${LCRYPTO_SRC}/pkcs7 ${LCRYPTO_SRC}/pkcs12 ${LCRYPTO_SRC}/rand \
${LCRYPTO_SRC}/rc2 ${LCRYPTO_SRC}/rc4 ${LCRYPTO_SRC}/rc5 \
- ${LCRYPTO_SRC}/ripemd ${LCRYPTO_SRC}/rsa \
+ ${LCRYPTO_SRC}/ripemd ${LCRYPTO_SRC}/rsa ${LCRYPTO_SRC}/../rsaref \
${LCRYPTO_SRC}/sha ${LCRYPTO_SRC}/stack ${LCRYPTO_SRC}/txt_db \
${LCRYPTO_SRC}/x509 ${LCRYPTO_SRC}/x509v3
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc
index 28e800d91139..5d0bb8276593 100644
--- a/secure/lib/libcrypto/Makefile.inc
+++ b/secure/lib/libcrypto/Makefile.inc
@@ -15,13 +15,8 @@ CFLAGS+= -DDEVRANDOM=\"/dev/urandom\"
LOCALBASE?= /usr/local
-.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != NO
-.if !exists(${LOCALBASE}/lib/librsaref.a)
-CFLAGS+= -DNO_RSA -DNO_SSL2
-WITH_RSA= NO
-.else
+WITH_RSA?= YES
+.if (!defined(USA_RESIDENT) || ${USA_RESIDENT} != NO) && ${WITH_RSA} != NO
CFLAGS+= -DRSAref
RSAREF= YES
-WITH_RSA= YES
-.endif
.endif