View | Details | Raw Unified | Return to bug 18555
Collapse All | Expand All

(-)src/secure/lib/libcrypto/Makefile (-1 / +6 lines)
Lines 13-19 Link Here
13
	${LCRYPTO_SRC}/rc2 ${LCRYPTO_SRC}/rc4 ${LCRYPTO_SRC}/rc5 \
13
	${LCRYPTO_SRC}/rc2 ${LCRYPTO_SRC}/rc4 ${LCRYPTO_SRC}/rc5 \
14
	${LCRYPTO_SRC}/ripemd ${LCRYPTO_SRC}/rsa ${LCRYPTO_SRC}/../rsaref \
14
	${LCRYPTO_SRC}/ripemd ${LCRYPTO_SRC}/rsa ${LCRYPTO_SRC}/../rsaref \
15
	${LCRYPTO_SRC}/sha ${LCRYPTO_SRC}/stack ${LCRYPTO_SRC}/txt_db \
15
	${LCRYPTO_SRC}/sha ${LCRYPTO_SRC}/stack ${LCRYPTO_SRC}/txt_db \
16
	${LCRYPTO_SRC}/x509 ${LCRYPTO_SRC}/x509v3
16
	${LCRYPTO_SRC}/x509 ${LCRYPTO_SRC}/x509v3 ${LCRYPTO_SRC}/idea
17
17
18
LIB=		crypto
18
LIB=		crypto
19
SHLIB_MAJOR=	1
19
SHLIB_MAJOR=	1
Lines 171-176 Link Here
171
	rc4/rc4.h rc5/rc5.h ripemd/ripemd.h rsa/rsa.h stack/safestack.h \
171
	rc4/rc4.h rc5/rc5.h ripemd/ripemd.h rsa/rsa.h stack/safestack.h \
172
	sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h x509/x509.h \
172
	sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h x509/x509.h \
173
	x509/x509_vfy.h x509v3/x509v3.h
173
	x509/x509_vfy.h x509v3/x509v3.h
174
175
.if exists(${LCRYPTO_SRC}/idea)
176
SRCS+=  i_cbc.c i_cfb64.c i_ecb.c i_ofb64.c i_skey.c
177
HDRS+=  idea/idea.h
178
.endif  
174
179
175
.for h in ${HDRS}
180
.for h in ${HDRS}
176
CRYPTO_HDRS+= ${LCRYPTO_SRC}/${h}
181
CRYPTO_HDRS+= ${LCRYPTO_SRC}/${h}
(-)src/secure/lib/libcrypto/Makefile.inc (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD: src/secure/lib/libcrypto/Makefile.inc,v 1.9 2000/02/26 13:06:56 peter Exp $
1
# $FreeBSD: src/secure/lib/libcrypto/Makefile.inc,v 1.9 2000/02/26 13:06:56 peter Exp $
2
2
3
LCRYPTO_SRC=	${.CURDIR}/../../../crypto/openssl/crypto
3
LCRYPTO_SRC=	${.CURDIR}/../../../crypto/openssl/crypto
4
CFLAGS+= -DTERMIOS -DANSI_SOURCE -DNO_IDEA -I${LCRYPTO_SRC} -I${.OBJDIR}
4
CFLAGS+= -DTERMIOS -DANSI_SOURCE -I${LCRYPTO_SRC} -I${.OBJDIR}
5
5
6
.if ${MACHINE_ARCH} == "i386"
6
.if ${MACHINE_ARCH} == "i386"
7
CFLAGS+= -DL_ENDIAN
7
CFLAGS+= -DL_ENDIAN

Return to bug 18555