summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornaddy <>2013-07-22 14:40:45 +0000
committernaddy <>2013-07-22 14:40:45 +0000
commite42dc0fc0df7342da984314825d9779552e0a03d (patch)
treed079150f095e0f82657e382ed39c34786f5214c8 /src
parentd96ef483ff67ca9366cadd8244006e270f6fdae5 (diff)
downloadopenbsd-e42dc0fc0df7342da984314825d9779552e0a03d.tar.gz
openbsd-e42dc0fc0df7342da984314825d9779552e0a03d.tar.bz2
openbsd-e42dc0fc0df7342da984314825d9779552e0a03d.zip
we now have IDEA and MDC2 in libcrypto, so don't disable them in openssl(1)
ok djm@
Diffstat (limited to 'src')
-rw-r--r--src/usr.sbin/openssl/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile
index a3948a7ae0..b7bdf0e1f9 100644
--- a/src/usr.sbin/openssl/Makefile
+++ b/src/usr.sbin/openssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.20 2012/07/11 11:02:48 sthen Exp $ 1# $OpenBSD: Makefile,v 1.21 2013/07/22 14:40:45 naddy Exp $
2 2
3PROG= openssl 3PROG= openssl
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
@@ -9,8 +9,7 @@ SSLEAYDIST= lib/libssl/src
9SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps 9SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps
10SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} 10SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST}
11 11
12CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 12CFLAGS+= -DMONOLITH -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
13CFLAGS+= -DOPENSSL_NO_MDC2
14CFLAGS+= -DOPENSSL_NO_SSL2 13CFLAGS+= -DOPENSSL_NO_SSL2
15CFLAGS+= -I${SSLEAY_SRC_TOP} 14CFLAGS+= -I${SSLEAY_SRC_TOP}
16 15